When unloading data from Snowflake, the user executes a COPY INTO
What additional command is required to load the file onto the local file system?
When unloading data from Snowflake, the user executes a COPY INTO
What additional command is required to load the file onto the local file system?
To load the file from an internal stage onto the local file system in Snowflake, the GET command is used. The GET command retrieves data files from a Snowflake stage to a local directory on the client machine.
A - GET (stage to file system) C - PUT (file system to stage)
Downloads data files from one of the following Snowflake stages to a local directory/folder on a client machine https://docs.snowflake.com/en/sql-reference/sql/get.html#get
https://docs.snowflake.com/en/user-guide/data-unload-overview.html#bulk-unloading-process
A - GET
Verified