Hi,
I'm trying to load data in a Snowflake temporary table. Is this approach correct?
I planning to use a Pre Create SQL statement to create the temporary table and choose Append Existing as output option.
USE DATABASE database_name;
USE SCHEMA schema_name;
CREATE OR REPLACE TEMPORARY TABLE temporary_table
(column_name VARCHAR);
