Which command is used to generate a zero-copy "snapshot" of any table, schema, or database?
Which command is used to generate a zero-copy "snapshot" of any table, schema, or database?
The correct command to generate a zero-copy snapshot of any table, schema, or database is the 'CREATE <object> ... CLONE' command. This command creates a clone of the specified database, schema, or table without physically copying the data, hence the term 'zero-copy'. Other commands provided in the options do not serve this purpose.
https://docs.snowflake.com/en/sql-reference/sql/create-clone
Correct