My current query to get the table space occupied by the tables in SAMPLE_DB is as below: use role accountadmin; use schema snowflake.INFORMATION_SCHEMA;
SELECT
table_name,
sum(active_bytes)
FROM "INFORMATION_SCHEMA".table_storage_metrics
where TABLE_CATALOG in ('SAMPLE_DB') group by table_name;
Question is: do I also need to find out the sum of TIME_TRAVEL_BYTES FAILSAFE_BYTES to get the total space for each table in SAMPLE_DB ?