COF-C02 · Question #271
How does Snowflake handle the bulk unloading of data into single or multiple files?
The correct answer is A. It assigns each unloaded data file a unique name. When using COPY INTO <location> for bulk unloading, Snowflake automatically assigns each output file a unique name (typically a UUID-based name with a file extension). By default, Snowflake splits data across multiple files (the SINGLE option defaults to FALSE, not TRUE…
Question
How does Snowflake handle the bulk unloading of data into single or multiple files?
Options
- AIt assigns each unloaded data file a unique name.
- BIt uses the put command to download the data by default.
- CIt uses COPY INTO <location> for bulk unloading where the default option is SINGLE - TRUE.
- DIt uses COPY INTO <location> to copy the data from a table into one or more files in an external
How the community answered
(34 responses)- A94% (32)
- C3% (1)
- D3% (1)
Explanation
When using COPY INTO <location> for bulk unloading, Snowflake automatically assigns each output file a unique name (typically a UUID-based name with a file extension). By default, Snowflake splits data across multiple files (the SINGLE option defaults to FALSE, not TRUE - making option C incorrect). Option B is wrong because the PUT command is used to upload files to a stage, not to download/unload data. Option D is partially correct in describing the command used, but the key distinguishing characteristic is that each file gets a unique name automatically.
Topics
Community Discussion
No community discussion yet for this question.