Is there any way to achieve unloading data from Snowflake to XLS?
We are using Airflow to load data from Snowflake to XLS file or Converting from CSV to XLS
Is there any way to achieve unloading data from Snowflake to XLS?
We are using Airflow to load data from Snowflake to XLS file or Converting from CSV to XLS
If you are leveraging Airflow, then you could potentially use Snowflake's Python Connector to load data from Snowflake to a Panda dataframe and then use Panda's to_excel() function to write that data out to Excel.
https://docs.snowflake.com/en/user-guide/python-connector.html
https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.to_excel.html