Exam SnowPro Core All QuestionsBrowse all questions from this exam
Question 587

Which command can be added to the COPY command to make it load all files, whether or not the load status of the files is known?

    Correct Answer: A

    The correct command to use is FORCE = TRUE. This option forces the COPY command to load all files regardless of whether their load status is known or not.

Discussion
bibisaOption: A

To force the COPY command to load all files regardless of whether the load status is known, use the FORCE option instead.

ShagunMittalOption: A

FORCE = TRUE when load status is known LOAD_UNCERTAIN_FILES = TRUE when load status is unknown

SimbajagnoleOption: A

FORCE=TRUE

ahadh7621Option: A

A is correct. https://docs.snowflake.com/en/sql-reference/sql/copy-into-table To force the COPY command to load all files regardless of whether the load status is known, use the FORCE option instead.

ViniJsrOption: C

Workarounds To load files whose metadata has expired, set the LOAD_UNCERTAIN_FILES copy option to true. The copy option references load metadata, if available, to avoid data duplication, but also attempts to load files with expired load metadata. Alternatively, set the FORCE option to load all files, ignoring load metadata if it exists. Note that this option reloads files, potentially duplicating data in a table.

MultiCloudIronManOption: A

A is correct