Home » Bigquery » Tutorials » List of snapshots

BigQuery Listing the snapshot tables in a dataset

Get the list of table snapshots in a BigQuery dataset by querying the INFORMATION_SCHEMA.TABLE_SNAPSHOTS table

List of snapshots example

SELECT * FROM library_backup.INFORMATION_SCHEMA.TABLE_SNAPSHOTS;

Filter the table snapshots of a specific table

SELECT * FROM library_backup.INFORMATION_SCHEMA.TABLE_SNAPSHOTS
WHERE base_table_name="books";