Hey @Datagyan ,
If your query result is larger than 25MB, Databricks automatically uses disposition=EXTERNAL_LINKS, which returns the result in multiple chunked files(external links).Currently, there's no option to get a single file directly from the SQL Warehouse API.
To get the result as a single file, you need to:
--> Programmatically download all the external links (e.g., using Python), and
--> Merge them into one final file (CSV, JSON, or Parquet).
Since only SQL Warehouse compute is allowed in this scenario, options like writing to DBFS or cloud storage via notebooks are not applicable.
harisankar