SQL Server 2005 - Automating Creation of Database Snapshots - Page 2August 3, 2005 Step 5Now let's query the table Hubble_Galaxies from the original database MyDB and from the SnapShot view MyDB_Snapshot1. Copy and paste the query below into the Microsoft SQL Server Management Studio's Query window and execute it. This statement displays all of the rows from the table Hubble_Galaxies from the database MyDB. [Refer Fig 1.1] use MyDB go Select * from Hubble_Galaxies go
Copy and paste the query below into the Microsoft SQL Server Management Studio's Query window and execute it. This statement displays all of the rows from the table Hubble_Galaxies, from the snapshot MyDB_Snapshot1 (the snapshot view of the database MyDB.) [Refer Fig 1.2] use MyDB_Snapshot1 go Select * from Hubble_Galaxies go
Now, let's automate creation of a daily database snapshot and let's keep one week worth of snapshots. Create a SQL Server Scheduled job [Refer Fig 1.3, 1.4, 1.5 and 1.6] to execute the following statement every night at 12:01 am. Download the code from here. declare @MyDay varchar(20) declare @query varchar(1000) declare @DatabaseName varchar(128) declare @snapshotName varchar(128) declare @snapDataName varchar(128) declare @snapFileName varchar(128) declare @snapFilePath varchar(128) set @Myday = (Select datename(weekday,getdate())) print 'It is ' + @MyDay Set @DatabaseName ='MyDB' Set @SnapDataName='MyDB_Data' Set @SnapshotName ='MyDB_Snapshot'+'_'+@MyDay Set @SnapFilename ='c:\data\MyDB_Data'+'_'+@MyDay+'.ss' Print 'Snapshot name is ' +@SnapshotName select * from sys.databases where source_database_id =db_id(@databasename) and name = @SnapshotName if @@rowcount <>0 begin set @query = 'Drop database '+ @SnapshotName print @query exec(@query) end set @query ='Create database ' + @SnapshotName + ' on (Name = ' +@snapDataName +', FileName="' +@SnapFilename +'") AS SNAPSHOT of ' + @databasename+';' print @query exec(@query)
When this scheduled jobs run daily, it deletes the previous weeks database snapshot and creates a new database snapshot. [Refer Fig 1.7]
The naming convention of the database snapshot is MyDB_Snapshot_Dayoftheweek The following SQL statement will list all of the database snapshots available on a SQL Server instance. [Refer Fig 1.8] select * from sys.databases where source_database_id is not null
Note: By changing the naming convention and the schedule of this process, you can convert this daily database snapshot process to a weekly or monthly database snapshot process. ConclusionThis article demonstrated the creation of a database snapshot and the automating of the creation of database snapshots. By creating a database snapshot everyday, it would be more convenient to go back to a particular day to get data, or compare or to monitor the status of the data. The database can be reverted to a database snapshot using the RESTORE command. |