usql icon indicating copy to clipboard operation
usql copied to clipboard

U-SQL Examples and Issue Tracking

Results 71 usql issues
Sort by recently updated
recently updated
newest added

hi everyone, i'm using mermaid in stackedit to make a flowchart and i would like to put it in the center of the page. i searched for the syntax but...

Team, EXTRACT ISSUE: I have a comma delimited text file that has a COMMENT field which includes some new line characters. This field is inside a double quote string, such...

Added MultilineJsonOuputter, that - exports one row -> one line in output file as standalone JSON document - can process rows in parallel (AtomicFileProcessing=false) - supports complex types (SQL.MAP, SQL.ARRAY)...

Hi, I'm attempting to run some scripts locally from my project and I'm not sure how to troubleshoot this issue. I'm using the (local-project) option for the ADLA account when...

Hi, I created a U-SQL class library project MyLibrary and separately created a U-SQL project MyProject. I built the U-SQL class library and registered it with the (local-project: MyProject) ADLA...

USQL job failed with "'row delimiter' should be no longer than 1." When specify extractor property as following: USING Extractors.Text(skipFirstNRows:1,quoting:true,delimiter:',',rowDelimiter:"\r\n"); rowDelimiter should be able to be specified as "\r\n" as...

There is avro Reader, I am also interested in Avro outputter. Can somebody create an example for USQL based on this? https://msdn.microsoft.com/en-us/library/dn749865.aspx Thanks!

are there examples showing how to convert csv to arvo using u-sql?

Sample Data: **** GUID1 START **** data1 data2 **** GUID1 END **** **** GUID2 START **** data1 data2 data3 **** GUID2 END **** **** GUID3 START **** data1 data2 ****...

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()...