Greetings fellow developers!
Does anyone know if there is there a way to query from dynamic external data source names in U-SQL?
For example, in the MS sample script below, we would like the "MyAzureSQLDWDataSource" to be generated dynamically.
@results =
SELECT DateTime.Now AS dayTime, *
FROM EXTERNAL MyAzureSQLDWDataSource LOCATION "dbo.AdventureWorksDWBuildVersion";
OUTPUT @results
TO "/Output/ReferenceGuide/DDL/DataSources/Query2B.csv"
USING Outputters.Csv(outputHeader: true);
Thanks!