Hi Community,
Is there any way that I can export the data as a CSV in Dremio through API or SQL Query and not from the UI ?
Thank you,
Maziha
Hi Community,
Is there any way that I can export the data as a CSV in Dremio through API or SQL Query and not from the UI ?
Thank you,
Maziha
@Maziha Try this
CREATE TABLE localhdfs.ctas.testcsv1 STORE AS (type => 'text', fieldDelimiter => ',', lineDelimiter => '
') WITH SINGLE WRITER AS SELECT * FROM table
This is working, thank you !