COF-C02 · Question #607
Which command is used to remove files from either external cloud storage or an internal staged
The correct answer is B. REMOVE. The REMOVE command (also aliased as RM) is the Snowflake-specific SQL command used to delete files from Snowflake stages - both internal stages (managed by Snowflake) and external stages (pointing to S3, Azure Blob, or GCS). DELETE is a DML command for removing rows from…
Question
Which command is used to remove files from either external cloud storage or an internal staged
Options
- ADELETE
- BREMOVE
- CTRUNCATE
- DDROP
How the community answered
(45 responses)- A2% (1)
- B93% (42)
- D4% (2)
Explanation
The REMOVE command (also aliased as RM) is the Snowflake-specific SQL command used to delete files from Snowflake stages - both internal stages (managed by Snowflake) and external stages (pointing to S3, Azure Blob, or GCS). DELETE is a DML command for removing rows from tables, not files from stages. TRUNCATE removes all rows from a table. DROP removes database objects like tables or schemas entirely. REMOVE is the correct choice for stage file management.
Topics
Community Discussion
No community discussion yet for this question.