What COPY INTO SQL command should be used to unload data into multiple files?
What COPY INTO SQL command should be used to unload data into multiple files?
To unload data into multiple files using the COPY INTO SQL command, you should use the option SINGLE=FALSE. This setting specifies that data should be unloaded into multiple files rather than a single file.
https://docs.snowflake.com/en/user-guide/data-unload-overview.html#bulk-unloading-into-single-or-multiple-files
The default is SINGLE = FALSE (i.e. unload into multiple files).
SINGLE = FALSE
D. SINGLE=FALSE
Bulk unloading, the default SINGLE= FALSE which means you can unload into multiple files
CORRECT
The default is SINGLE = FALSE (i.e. unload into multiple files) Answer: D
ANSWER IS D The COPY INTO <location> command provides a copy option (SINGLE) for unloading data into a single file or multiple files. The default is SINGLE = FALSE (i.e. unload into multiple files).
D. SINGLE=FALSE
D SINGLE=FALSE
SINGLE = FALSE
single is false