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

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?

    Correct Answer: D

    To view the list of files that have been uploaded to an internal stage, the correct command is 'list @mystage;'. In Snowflake, the '@' symbol denotes a stage location, and 'mystage' specifies the name of the internal stage. The other options either incorrectly reference a table stage or prepend the '%' symbol, which is not needed in this context.

Discussion
halolOption: D

https://docs.snowflake.com/en/sql-reference/sql/list.html

RajivnbOption: D

User Stage should start with @~ Table Stage should start with @% Named Stage or Internal Stage of Snowflake is just @.

EmiBOption: D

B. list @%mytable; -- copy into @%mytable FROM mytable; D. list @mystage; -- copy into @mystage FROM mytable;

fahfouhi94Option: D

correct answer

harshagc180Option: D

Correct Answer D

_yyuktaOption: D

D. list @mystage;