Forum Discussion
gsingh_
May 22, 2024Copper Contributor
Query an external CSV file
Hi, I am trying to query an external CSV file via KQL using externaldata() operator. As a POC, I created a test storage account with a simple container and then uploaded a CSV file to it. I am using...
Clive_Watson
May 24, 2024Bronze Contributor
Its hard to help without seeing the query used. I will say though if I have issues, I tend to use Azure Data Explorer (free cluster) to run the same command, as I often find that the error returned are more detailed)
https://dataexplorer.azure.com/publicfreecluster
https://dataexplorer.azure.com/publicfreecluster
gsingh_
May 25, 2024Copper Contributor
Hi Clive_Watson , I am trying with the below command:
externaldata (columnA:string, columnB:string)
[@"https://BLOB SAS URL?BLOB SAS Token]
with(format="csv")
thanks