Which type of Snowflake table retains data even after the user session ends and supports Time Travel and Fail-safe features?
Think about which table type is designed for long-term storage with full data protection.
Permanent tables store data persistently and support Time Travel and Fail-safe. Temporary tables exist only during the session. Transient tables skip Fail-safe. External tables reference external storage.
What happens to a temporary table in Snowflake when the user session that created it ends?
Consider the lifespan of temporary tables relative to user sessions.
Temporary tables exist only during the session that created them. When the session ends, the table and its data are dropped automatically.
Which SQL statement correctly creates a transient table named sales_data with clustering on the region column?
Check the correct syntax for clustering keys in Snowflake table creation.
The correct syntax uses CLUSTER BY (column_name) after the column definitions. Option B matches this syntax exactly.
Which statement correctly describes the difference in data protection features between permanent and transient tables in Snowflake?
Recall which table type skips Fail-safe to reduce storage costs.
Permanent tables support both Time Travel and Fail-safe. Transient tables support Time Travel but skip Fail-safe, reducing storage costs but lowering data protection.
You need to store intermediate data during a user session that should be automatically removed when the session ends. The data does not require Time Travel or Fail-safe. Which table type should you choose?
Consider the table type that exists only during the session and does not keep data after.
Temporary tables exist only during the session and are dropped automatically afterward. They do not support Time Travel or Fail-safe, making them ideal for temporary session data.