Snowflake's Time Travel feature allows querying historical data. What is the maximum retention period for Time Travel on a standard Snowflake account?
Think about the default maximum retention period for Time Travel in Snowflake standard editions.
Standard Snowflake accounts support Time Travel retention up to 1 day (24 hours). Extended retention (up to 90 days) is available only with Enterprise edition or higher.
You want to set the Time Travel retention period to 3 days on a Snowflake table named sales_data. Which SQL command correctly sets this retention period?
Look for the exact property name Snowflake uses for retention period in table alteration.
The correct syntax to set Time Travel retention period on a table is ALTER TABLE <table_name> SET DATA_RETENTION_TIME_IN_DAYS = <days>;
How does increasing the Time Travel retention period affect Snowflake storage costs?
Think about how storing more historical data affects storage usage.
Longer Time Travel retention means Snowflake keeps more historical data, which increases storage consumption and costs.
What happens if you try to query data using Time Travel after the retention period has expired?
Consider what happens when historical data is purged after retention.
Once the Time Travel retention period expires, historical data is purged and queries referencing that time will fail with an error.
Your company must comply with data privacy laws that require permanent deletion of sensitive data within 30 days. How does Snowflake's Time Travel retention period affect compliance?
Think about how Time Travel retains deleted data and its impact on permanent deletion.
Time Travel retains deleted data for the retention period. To comply with strict deletion laws, retention must be set to 0 to avoid keeping deleted data.