How can a user get the MOST detailed information about individual table storage details in Snowflake?
How can a user get the MOST detailed information about individual table storage details in Snowflake?
To get the most detailed information about individual table storage details in Snowflake, a user should use the TABLE_STORAGE_METRICS view. This view provides comprehensive storage metrics at the table level, including details such as the number of bytes stored and the number of rows. Other options like SHOW TABLES, SHOW EXTERNAL TABLES, and the TABLES view do not provide as detailed storage information as the TABLE_STORAGE_METRICS view.
it's correct. https://docs.snowflake.com/en/sql-reference/account-usage/table_storage_metrics
D - table_storage_metrics view