SHOW SNAPSHOT
This statement is used to view backups that already exist in the repository.
grammar:
SHOW SNAPSHOT ON `repo_name` [WHERE SNAPSHOT = "snapshot" [AND TIMESTAMP = "backup_timestamp"]];
illustrate:
View the existing backups in the repository example_repo
SHOW SNAPSHOT ON example_repo;
View only the backup named backup1 in the repository example_repo:
SHOW SNAPSHOT ON example_repo WHERE SNAPSHOT = "backup1";
View the details of the backup named backup1 in the warehouse example_repo with the time version “2018-05-05-15-34-26”:
SHOW SNAPSHOT ON example_repo WHERE SNAPSHOT = "backup1" AND TIMESTAMP = "2018-05-05-15-34-26";
SHOW, SNAPSHOT