DP-100 · Question #134
A set of CSV files contains sales records. All the CSV files have the same data schema. Each CSV file contains the sales record for a particular month and has the filename sales.csv. Each file in stor
The correct answer is B. Create a tabular dataset that references the datastore and specifies the path 'sales/*/sales.csv',. Option B is correct because creating a tabular dataset with the wildcard path 'sales//sales.csv' dynamically includes all current and future monthly folders without modification. The '' wildcard matches any folder name under 'sales/', so when a new month's folder is added (e.g.,
Question
Options
- ACreate a tabular dataset that references the datastore and explicitly specifies each 'sales/mm-
- BCreate a tabular dataset that references the datastore and specifies the path 'sales/*/sales.csv',
- CCreate a new tabular dataset that references the datastore and explicitly specifies each
- DCreate a tabular dataset that references the datastore and explicitly specifies each 'sales/mm-
How the community answered
(61 responses)- A8% (5)
- B72% (44)
- C3% (2)
- D16% (10)
Explanation
Option B is correct because creating a tabular dataset with the wildcard path 'sales//sales.csv' dynamically includes all current and future monthly folders without modification. The '' wildcard matches any folder name under 'sales/', so when a new month's folder is added (e.g., sales/2026-05/), it is automatically included in the dataset on the next training run. Options A, C, and D all explicitly enumerate each 'sales/mm-yyyy/' path, which means the dataset definition must be manually updated each month - violating the requirement that new data is automatically incorporated. The wildcard path approach is the recommended pattern for time-partitioned data in Azure ML tabular datasets.
Topics
Community Discussion
No community discussion yet for this question.