Which command can be used to load data files into a Snowflake stage?
Which command can be used to load data files into a Snowflake stage?
The correct command to load data files into a Snowflake stage is PUT. The PUT command is specifically used to upload files from a local file system to an internal stage in Snowflake.
(up)load to stage - PUT (up)load from stage - COPY INTO FROM @ unload to stage - COPY INTO @ download from stage - GET
load/unload -> copy into upload/download-> put/get
https://docs.snowflake.com/en/user-guide/data-load-local-file-system-stage.html
C.PUT is correct answer
B is the correct answer for external stage and c is the correct answer for internal stages
Correct Answer: C
C. PUT
If we load from local file system, then PUT If we unload data from a Snowflake table into stage, then COPY INTO In this case, we are loading data FILES, we're not loading data from a Snowflake table into a stage. Therefore, the right answer is PUT https://docs.snowflake.com/en/user-guide/data-load-local-file-system-stage https://docs.snowflake.com/en/user-guide/data-unload-snowflake
Correct
C Is used to load data into a stage
C is correct