View
This article explains how to view a SQL Server database snapshot using SQL Server Management Studio. 1. In Object Explorer, connect to the instance o
This article explains how to view a SQL Server database snapshot using SQL Server
Management Studio.
- In Object Explorer, connect to the instance of the SQL Server Database Engine and then
expand that instance.
-
Expand
-
Expand
, and select the snapshot you want to view.
-
Connect to the Database Engine.
-
From the
bar, select.
- To list the database snapshots of the instance of SQL Server, query the
column of the
sys.databases
catalog view for non-NULL values.
- You can also use this query to get details about the database snapshot and its files
7
Note
To create, revert to, or delete a database snapshot, you must use Transact-SQL.
source_database_id
SELECT db_name(db.source_database_id) source_database,
db.name
AS snapshot_db_name,
db.database_id,
db.source_database_id,
db.create_date,