Valid SOL-C01 Dumps shared by ExamDiscuss.com for Helping Passing SOL-C01 Exam! ExamDiscuss.com now offer the newest SOL-C01 exam dumps, the ExamDiscuss.com SOL-C01 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com SOL-C01 dumps with Test Engine here:
You are loading JSON data from an external stage into a Snowflake table called 'events'. The JSON files contain a top-level array of event objects. Some event objects are malformed and cause the 'COPY INTO' command to fail. You need to load as much valid data as possible while logging the errors caused by the malformed objects. Which TWO `COPY INTO' options, when used together, are MOST suitable for achieving this?
Correct Answer: B,C
Using ERROR = CONTINUE' allows the COPY command to continue processing files even when encountering errors in individual records. 'VALIDATION_MODE = RETURN_ERRORS' captures the errors encountered during loading, allowing you to log and analyze them without stopping the load process. Skipping the entire file CSKIP_FILE) is less desirable than continuing to load valid data from the file. Purging the files has no effect on the load process or error handling. SON ERROR = ABORT_STATEMENT will abort the whole COPY operation