have a query here. The goal is to send data from Snowflake to Azure Storageblob using a COPY INTO command. COPY INTO @AZURE_ML_STAGE FROM ( SELECT * FROM "DB"."SCHEMA"."DATA" WHERE _FIVETRAN_DELETED = FALSE ) FILE_FORMAT=(TYPE=csv)
Inspite of mentioning FILE_FORMAT=(TYPE=csv) the data in our Azure storage blob is saved as octet-stream and the file has no .csv extension.
What could we be possibly doing wrong?
Any leads would be helpful.
Thanks in advance.