# View: dt_track_samples

**View Name:** dt_track_samples
**Table Source:** `INTELLIGENCE.DBT_PROD.DT_TRACK_SAMPLES`
**File Path:** `dt_track_samples.view.lkml`

## Overview

- **File Size:** 555 bytes
- **Lines of Code:** 25
- **Dimensions:** 2
- **Measures:** 0
- **Dimension Groups:** 0
- **Filters:** 0

## Comments & Notes

- derived_table: {
- SELECT unique_track_id AS tuid,
- LISTAGG(DISTINCT track_name, ', ') WITHIN GROUP (ORDER BY track_name) AS samples

## Dimensions

| Name | Type |
|------|------|
| `tuid` | number |
| `samples` | string |

## Derived Table

```sql
#     sql:
# SELECT unique_track_id AS tuid,
# LISTAGG(DISTINCT track_name, ', ') WITHIN GROUP (ORDER BY track_name) AS samples
# FROM orchard_app_reporting_v2.prod_ows_track_ows_track.track_sample
# GROUP BY 1 ;;
#
```

