You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Yes... although this feature is in Private Preview at the moment. Can you send me an email to usql at microsoft dot com with a description of your scenario? I can give you the explanation on how to enable the private preview capability for it.
I have a same scenario. I have one input file I have to spilt that input file to multiple output based on column value.
Say Input file has column country,product,sales and I have to generated outputfile based on countryname.
country,product,sales
US,WIN10,12
US,O365,13
UK,Book,12
INDIA,mobile,14
based on the above input, I want 3 output file UK_produc.csv,US_product.csv and India_product.csv.
is it possible to create dynamically output files depend on the date?
For example:
DECLARE @output_Path string = @"/Folder/_{_Date:yyyy}{_Date:MM}out.tsv";
@ex =
EXTRACT
ID int,
EventTime string
FROM @in
USING Extractors.text()
@res =
SELECT ID,
DateTime.Parse(EventTime) AS _Date
FROM @ex
OUTPUT @res
TO @output_Path
USING Outputters.csv()
The text was updated successfully, but these errors were encountered: