SnowPro Core Certification — Question 268
A user unloaded a Snowflake table called mytable to an internal stage called mystage.
Which command can be used to view the list of files that has been uploaded to the stage?
Answer options
- A. list @mytable;
- B. list @%mytable;
- C. list @%mystage;
- D. list @mystage;
Correct answer: D
Explanation
The correct command is D, 'list @mystage;', as it directly queries the internal stage where the files were uploaded. Option A refers to the table itself, while Option B and C incorrectly use the '%' symbol, which is not applicable when listing files in a stage.