Show Snapshots
Summary
The SHOW SNAPSHOTS
command returns a result set listing all snapshot savepoints that exist in the Connect environment you have logged into. Savepoints record the state of all domain objects present in Connect when the snapshot was taken.
Syntax
show snapshots; |
Parameters
n/a
Details
The following table lists the command result set’s columns.
Column Name
|
Data Type
|
Description
|
---|---|---|
id | string | Unique identifier for each snapshot/savepoint. |
description | string | Any custom notes the developer who created the snapshot may have written. |
created_by | string | The user account who created the snapshot. |
created_instant | instant | UTC instant when the snapshot was created. |
modified_by | string | n/a |
modified_instant | instant | n/a |
Examples
show snapshots;
select * from (show snapshots) where created_instant >= ‘2016-09-08’;