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

USQL script on ADLA were hanging indefinitely, until we realized that we had setup the wrong extractor (CSV instead of TSV) on a `.tsv` file. Sure it is our fault,...

I have a requirement to pull the table schema information using U-SQL. Like the columns in table and datatype. How can I achieve this?

I want to pass the Table name as in-parameter in a stored procedure in U-SQL and then want to have a SELECT * FROM the table. Something like below ::...

Hi, I tried to run the AvroExample many times and always I get the following error: Vertex SV1_Extract[0] failed 6 times. I have followed the all instructions and I am...

JsonExtractor cannot handle if json contains an array as top most object. Following does not work input json: [{'groupId':'g1'},{'groupId':'g2'}] extractor with path: new Microsoft.Analytics.Samples.Formats.Json.JsonExtractor("$[*]")

After doing all the steps described in your repository for reading the Avro file from Data Lake Store using U-SQL. Below is the script I am using which is replication...

Guys I'm having a hard time trying to figure out how to do the next subquery ```sql declare @ventas as table( semana int, existencia int ); declare @semanas as table(...

Below is the sample extract json, { "AReference": "XXXXXXXXXXXX", "Id": 111111111, "items": [ { "vId": 22222222, "rReason": { "AB": 1, "XY": "ABC XYZ" } } ], "time": "2017-12-28T13:51:18.6679191Z" }

Hi All, checking out this file: https://github.com/Azure/usql/blob/master/Examples/AvroExamples/AvroExamples/1-CreateDB.usql It seems to create a database, but then checking out these files: https://github.com/Azure/usql/blob/master/Examples/AvroExamples/AvroExamples/2-RegisterAssemblies.usql https://github.com/Azure/usql/blob/master/Examples/AvroExamples/AvroExamples/3-SimpleAvro.usql It doesn't seem to be used. Or is it...

I have the following JSON file `{ "Person": { "PersonType": "BC", "PersonIdentification": { "IdentificationIdType": "INFOWARE_ID", "IdentificationId": "1009" }, "MatriculeRH": { "MatriculeIdType": null, "MatriculeId": null }, "Affectation": { "POSIdentification": { "POSIdType":...