Pure Storage Inc.

09/30/2024 | Press release | Distributed by Public on 09/30/2024 15:15

Using T SQL Snapshot Backup: Point in time Recovery

This blog on point-in-time recovery originally appeared on www.nocentino.com. It has been republished with permission from the author.

In this post, the second in our series, I will guide you through using the new T-SQL snapshot backup feature in SQL Server 2022 to take a snapshot backup and perform point-in-time database restores using a snapshot backup as the base of the restore. We will explore how to manage storage-level operations, such as cloning snapshots and executing an instantaneous point-in-time restore of a database from the snapshot with minimal impact on your infrastructure. Additionally, I will demonstrate a PowerShell script that utilizes dbatools and the PureStoragePowerShellSDK2 modules to automate the process.

You can grab the whole script for this blog post on GitHub.

Taking a T-SQL Snapshot Backup

In the previous post in this series, "Using T-SQL Snapshot Backup: Are Snapshots Backups?" we covered the theory of using T-SQL snapshot backup for backup and restore operations. Now let's get down to business and walk through the process of taking a T-SQL snapshot backup.

Initialize the Script's Variables and Connections

  • To begin, we'll set up some PowerShell variables to establish a connection to our SQL Server. We'll also set some variables describing where our primary storage is, a Pure Storage®FlashArray system, and which volumes contain our databases. I'm utilizing dbatools and the Pure Storage PowerShell SDK2 to manage this process.

    1

    Import-Module dbatools Import-Module PureStoragePowerShellSDK2 $TargetSQLServer = 'SqlServer1' # SQL Server Name $ArrayName = 'flasharray1.example.com' # FlashArray $DbName = 'Database1' # Name of database $BackupShare = '\\FileServer1\SHARE\BACKUP' # File system location to write the backup metadata file $PGroupName = 'SqlServer1_Pg' # Name of the Protection Group on FlashArray1 $FlashArrayDbVol = 'Fa_Sql_Volume_1' # Volume name on FlashArray containing database files $TargetDisk = '6000c29240f79ca82ef017e1fdc000a7' # The serial number of the Windows volume containing database files

  • I am using the dbatools module here because it allows me to create a persistent SMO connection to our SQL instance and use it across multiple cmdlet calls in my script. Unlike the Invoke-SqlCmd from the SqlServer module, which establishes a connection, executes the query, and then disconnects the session. If we use Invoke-SqlCmd to initiate the database freeze, the database will immediately thaw when the session disconnects. Since dbatools maintains the connection, the database will remain frozen even after executing the cmdlet. To do this, I establish the SMO connection using Connect-DbaInstance, store the connection in $SqlInstance, and then pass it across various cmdlet calls, ensuring that the same SPID/connection is reused within SQL Server.

    1

    $SqlInstance = Connect-DbaInstance -SqlInstance $TargetSQLServer -TrustServerCertificate -NonPooledConnection

  • Let's get some information about our database; take note of the size (in MB). That's a pretty big database, nearly 3.5TB on disk. We're going to restore it nearly instantly later on in this script. Who's excited?

    1

    Get-DbaDatabase -SqlInstance $SqlInstance -Database $DbName | Select-Object Name, SizeMB Name SizeMB -- --- Database1 3484091.81

Connect to Our Storage Environment

  • In order to connect to the FlashArray's REST API, we will prompt for user credentials. These will be used to create a connection object stored in the $FlashArray variable for subsequent operations in the script, including taking a storage-based snapshot after freezing the database for write IO.

    1

    $Credential = Get-Credential $FlashArray = Connect-Pfa2Array -EndPoint $ArrayName -Credential $Credential -IgnoreCertificateError

Taking a T-SQL-based Snapshot Backup

  • Next, we need to freeze the database for write operations. We will create a query string for the T-SQL we want to run and then pass that string as a parameter to Invoke-DbaQuery. This code reuses the $SqlInstance SMO connection that was established earlier, so when this code finishes running, the database will still be frozen for write IO. I added the -Verbose flag to expose some additional information. In the output, you can see the backup locks being acquired and the output confirming that the database is frozen for write IO.

    1

    $Query = "ALTER DATABASE $DbName SET SUSPEND_FOR_SNAPSHOT_BACKUP = ON" Invoke-DbaQuery -SqlInstance $SqlInstance -Query $Query -Verbose VERBOSE: Database 'Database1' acquired suspend locks in session 57. VERBOSE: I/O is frozen on database Database1. No user action is required. However, if I/O is not resumed promptly, you could cancel the backup. VERBOSE: Database 'Database1' successfully suspended for snapshot backup in session 57.

  • Next, take a snapshot of the Protection Group while the database is frozen for write IO. This snapshot will contain an application-consistent set of data that can be used for restores, replicated to other arrays in the same site, or transferred between sites for disaster recovery. In the output below, you can see the information returned when taking a snapshot on a FlashArray. Let's store this information in the variable $Snapshot so we can use it later to encode some of these details in the metadata-only backup file's header.

    1

    $Snapshot = New-Pfa2ProtectionGroupSnapshot -Array $FlashArray -SourceName $PGroupName $Snapshot Name : SqlServer1-pg.2121 Created : 9/1/2024 7:34:46 PM Destroyed : False Pod : Source : @{Id='53340721-d581-366f-078d-6d6be001fab3'; Name='SqlServer1-pg'} Space : Suffix : 2121 TimeRemaining : EradicationConfig : @{ManualEradication='enabled'} Id : 7200bda4-b855-9c01-627e-5bf6eeec5a16

  • Now, it's time to take a metadata-only backup. The metadata-only backup file name is dynamically generated using the database name and the current date. The backup command contains the database name $DbName, the backup file location TO DISK='$BackupFile', and the WITH METADATA_ONLY option to specify that it's a snapshot backup without copying the data. The MEDIADESCRIPTION part stores the snapshot and FlashArray names in the backup metadata as a pipe-delimited string. This information can help locate the snapshot associated with this metadata-only backup file. Finally, the T-SQL snapshot backup is executed using the cmdlet Invoke-DbaQuery, which writes the metadata-only backup file to the specified location after thawing the database if successful.
    I am using the verbose flag again. When the command is executed, the output will show that the database is thawed, write IO is resumed, and the backup locks are released. Additionally, it will produce output similar to that of a full backup, reporting the number of pages copied from the database files. However, in this case, it will show that 0 pages are copied because we are performing a METADATA_ONLY snapshot backup.

    1

    $BackupFile = "$BackupShare\$DbName_$(Get-Date -Format FileDateTime).bkm" $Query = "BACKUP DATABASE $DbName TO DISK='$BackupFile' WITH METADATA_ONLY, MEDIADESCRIPTION='$($Snapshot.Name)|$($FlashArray.ArrayName)'" Invoke-DbaQuery -SqlInstance $SqlInstance -Query $Query -Verbose VERBOSE: I/O was resumed on database Database1. No user action is required. VERBOSE: Database 'Database1' released suspend locks in session 57. VERBOSE: Database 'Database1' originally suspended for snapshot backup in session 57 successfully resumed in session 57. VERBOSE: Processed 0 pages for database 'Database1', file 'Database1' on file 1. VERBOSE: Processed 0 pages for database 'Database1', file 'Database1_Base_1' on file 1. VERBOSE: Processed 0 pages for database 'Database1', file 'Database1_part_ci1_01' on file 1. VERBOSE: Processed 0 pages for database 'Database1', file 'Database1_part_ci2_01' on file 1. VERBOSE: Processed 0 pages for database 'Database1', file 'Database1_part_ci3_01' on file 1. VERBOSE: Processed 0 pages for database 'Database1', file 'Database1_part_ci4_01' on file 1. VERBOSE: Processed 0 pages for database 'Database1', file 'Database1_part_ci5_01' on file 1. VERBOSE: Processed 0 pages for database 'Database1', file 'Database1_part_ci6_01' on file 1. VERBOSE: Processed 0 pages for database 'Database1', file 'Database1_part_ci7_01' on file 1. VERBOSE: BACKUP DATABASE successfully processed 0 pages in 0.007 seconds (0.000 MB/sec).

  • Now that we have a snapshot backup as a base for a full database restore, let's take a log backup so that we can later showcase how to perform a point-in-time recovery.

    1

    $LogBackup = Backup-DbaDatabase -SqlInstance $SqlInstance -Database $DbName -Type Log -Path $BackupShare -CompressBackup

What Does SQL Server Think Happened?

  • Let's check the SQL Server error log to see what SQL Server thinks happened. Here you can see that the snapshot backup process begins for Database1. The database option suspend_for_snapshot_backup is set to ON, and the database acquires backup locks, and freezes I/O operations. Then, after we take our METADATA_ONLY snapshot backup, the I/O operations for Database1 are resumed, and the backup locks are released. The log reports that the backup operation completes successfully, and we see that again 0 pages are being copied.

    1

    Get-DbaErrorLog -SqlInstance $SqlInstance -LogNumber 0 | Format-Table SqlServer1 MSSQLSERVER SqlServer1 9/1/2024 7:34:29 PM spid57 Setting database option suspend_for_snapshot_backup to ON for database 'Database1'. SqlServer1 MSSQLSERVER SqlServer1 9/1/2024 7:34:29 PM spid57 Database 'Database1' acquired suspend locks in session 57. SqlServer1 MSSQLSERVER SqlServer1 9/1/2024 7:34:29 PM spid57 I/O is frozen on database Database1. No user action is required. However, if I/O is not resumed promptly, you could cancel the backup. SqlServer1 MSSQLSERVER SqlServer1 9/1/2024 7:34:29 PM spid57 Database 'Database1' successfully suspended for snapshot backup in session 57. SqlServer1 MSSQLSERVER SqlServer1 9/1/2024 7:35:13 PM spid57 I/O is frozen on database Database1. No user action is required. However, if I/O is not resumed promptly, you could cancel the backup. SqlServer1 MSSQLSERVER SqlServer1 9/1/2024 7:35:13 PM spid57 I/O was resumed on database Database1. No user action is required. SqlServer1 MSSQLSERVER SqlServer1 9/1/2024 7:35:13 PM spid57 Database 'Database1' released suspend locks in session 57. SqlServer1 MSSQLSERVER SqlServer1 9/1/2024 7:35:13 PM spid57 Database 'Database1' originally suspended for snapshot backup in session 57 successfully resumed in session 57. SqlServer1 MSSQLSERVER SqlServer1 9/1/2024 7:35:13 PM Backup Database backed up. Database: Database1, creation date(time): 2023/10/28(20:43:06), pages dumped: 186122570, first LSN: 185573:2497964:53, last LSN: 185573:2497987:1, number of dump devices: 1, device infoSqlServer1 MSSQLSERVER SqlServer1 9/1/2024 7:35:13 PM Backup BACKUP DATABASE successfully processed 0 pages in 0.007 seconds (0.000 MB/sec).

  • The backup is recorded in MSDB as a full backup with a snapshot.

    1

    Get-DbaDbBackupHistory -SqlInstance $SqlInstance -Database $DbName -Last SqlInstance Database Type TotalSize DeviceType Start Duration End ------ ---- -- ----- ----- --- ---- -- SqlServer1 Database1 Full 1.39 TB Disk 2024-09-01 19:35:11.000 00:00:02 2024-09-01 19:35:13.000

  • Let's take a look at the information in the backup header. Here, I've summarized important details such as "BackupType," "BackupPath," and data size. This header format is consistent across all backup types in SQL Server. As you develop automation processes around this feature, it should be familiar territory for a DBA.

    1

    Read-DbaBackupHeader -SqlInstance $SqlInstance -Path $BackupFile BackupName : BackupDescription : BackupType : 1 ExpirationDate : Compressed : 0 Position : 1 DeviceType : 2 UserName : DOMAIN\anocentino ServerName : SqlServer1 DatabaseName : Database1 DatabaseVersion : 957 ...output omitted... BackupPath : \\w2016-anthony\SHARE\BACKUP\Database1_20240901T1235110742.bkm BackupSize : 1.39 TB CompressedBackupSize : 1.39 TB

Read More from This Series

Using T-SQL Snapshot Backup: Are Snapshots Backups?

Using T-SQL Snapshot Backup: Point-in-time Recovery

Using T-SQL Snapshot Backup: Point-in-time Recovery - Azure Edition

Performing a Point-in-time Restore from a T-SQL Snapshot Backup

Now that we have a T-SQL snapshot backup and a log backup, let's perform a point-in-time restore using these two backups.

  • First, we need to take the database offline, which we'd have to do anyway if we were restoring a full backup.

    1

    $Query = "ALTER DATABASE $DbName SET OFFLINE WITH ROLLBACK IMMEDIATE" Invoke-DbaQuery -SqlInstance $SqlInstance -Database master -Query $Query

  • Since this is a storage-level operation, the volume of the database files needs to be taken offline.

    1

    Get-Disk | Where-Object { $_.SerialNumber -eq $TargetDisk } | Set-Disk -IsOffline $True

  • By using the following code, I can retrieve the MEDIADESCRIPTION from the metadata-only backup file, where we stored the pipe-delimited string containing the location of FlashArray where the snapshot is located and the snapshot name. I'm storing this information in the variables $ArrayName and $SnapshotName. This is a crucial part of any snapshot backup plan as it allows us to accurately identify the snapshot associated with the metadata-only file. In this case, the FlashArray is flasharray1.example.com and the snapshot name on that array is SqlServer1-pg.2121, which contains our backup.

    1

    $Query = "RESTORE LABELONLY FROM DISK = '$BackupFile'" $Labels = Invoke-DbaQuery -SqlInstance $SqlInstance -Query $Query -Verbose $ArrayName = (($Labels | Select-Object MediaDescription -ExpandProperty MediaDescription).Split('|'))[1] $SnapshotName = (($Labels | Select-Object MediaDescription -ExpandProperty MediaDescription).Split('|'))[0] $ArrayName $SnapshotName flasharray1.example.com SqlServer1-pg.2121

  • In this example, we are performing an in-place database restore. This process involves overwriting the current volume with the contents of the snapshot and reverting the database to its previous state. On a Pure Storage FlashArray (or Pure Cloud Block Store™), the cmdlet "New-Pfa2Volume" is used to clone a snapshot. In this code, we are overwriting the volume's contents with the snapshot's contents to revert the database to its previous state.

    1

    New-Pfa2Volume -Array $FlashArray -Name $FlashArrayDbVol -SourceName ($SnapshotName + ".$FlashArrayDbVol") -Overwrite $true

  • In our previous post, we discussed additional restore scenarios. We could clone to a new set of volumes on the same instance, restoring the database with a new name. Alternatively, we could clone the volumes to another instance of SQL Server.
  • After restoring the data to its original state, let's bring the disk back online.

    1

    Get-Disk | Where-Object { $_.SerialNumber -eq $TargetDisk} | Set-Disk -IsOffline $False

  • With the database files physically in place and reverted back in time, we can use the following code to create the RESTORE command as a string: RESTORE DATABASE $DbName to initiate the restore process and specify the location of the metadata-only backup file using the FROM DISK = '$BackupFile' option. Since this is a T-SQL snapshot backup-based restore, we need to include the METADATA_ONLY option, which informs the database engine not to copy the pages during the restore process. Additionally, we should incorporate the REPLACE option to overwrite the existing database and include the NORECOVERY option to keep the database in RESTORING mode after the command is executed. If you wish to bring the database online at this point, you can omit the NORECOVERY option. The Invoke-DbaQuery command is used to execute the query string and initiates the restore process.

    1

    $Query = "RESTORE DATABASE $DbName FROM DISK = '$BackupFile' WITH METADATA_ONLY, REPLACE, NORECOVERY" Invoke-DbaQuery -SqlInstance $SqlInstance -Database master -Query $Query -Verbose VERBOSE: RESTORE DATABASE successfully processed 0 pages in 1.184 seconds (0.000 MB/sec).

  • The full restore duration includes the instant snapshot revert and about one second of database operations. That's just wild!
  • With the full restore completed, let's check the database's current status. It's in RESTORING mode.
  • 1

    Get-DbaDbState -SqlInstance $SqlInstance -Database $DbName Access : MULTI_USER ComputerName : SqlServer1 DatabaseName : Database1 InstanceName : MSSQLSERVER RW : READ_WRITE SqlInstance : SqlServer1 Status : RESTORING

  • Now, it's time to perform the log restore. I am leaving the database in the RESTORING mode by adding the -NoRecovery parameter.

    1

    Restore-DbaDatabase -SqlInstance $SqlInstance -Database $DbName -Path $LogBackup.BackupPath -NoRecovery -Continue

  • With the restore complete, let's online the database.

    1

    $Query = "RESTORE DATABASE $DbName WITH RECOVERY" Invoke-DbaQuery -SqlInstance $SqlInstance -Database master -Query $Query

  • Let's again check the current state of the database…it's ONLINE.

    1

    Get-DbaDbState -SqlInstance $SqlInstance -Database 'Database1' Access : MULTI_USER ComputerName : SqlServer1 DatabaseName : Database1 InstanceName : MSSQLSERVER RW : READ_WRITE SqlInstance : SqlServer1 Status : ONLINE

How Long Did the Backup Take?

Lastly, let's look at how long this process takes, from freezing the database for a consistent snapshot to creating the snapshot on our FlashArray and performing a metadata-only backup. In my lab, this usually takes 400ms-800ms. But remember, the freeze is only for writes, so it is very fast and only impacts writes. When the database is frozen, you can measure it using the WRITELOG wait type. Most applications can tolerate a write IO freeze of a few hundred milliseconds. Also, it's likely that you'll perform this operation during a maintenance window.

1

$Start = (Get-Date) $Query = "ALTER DATABASE $DbName SET SUSPEND_FOR_SNAPSHOT_BACKUP = ON" Invoke-DbaQuery -SqlInstance $SqlInstance -Query $Query -Verbose $Snapshot = New-Pfa2ProtectionGroupSnapshot -Array $FlashArray -SourceName $PGroupName #We'll use MEDIADESCRIPTION to hold some information about our snapshot $BackupFile = "$BackupShare\$DbName_$(Get-Date -Format FileDateTime).bkm" $Query = "BACKUP DATABASE $DbName TO DISK='$BackupFile' WITH METADATA_ONLY, MEDIADESCRIPTION='$($Snapshot.Name)|$($FlashArray.ArrayName)'" Invoke-DbaQuery -SqlInstance $SqlInstance -Query $Query -Verbose $Stop = (Get-Date) Write-Output "The snapshot time takes…$(($Stop - $Start).Milliseconds)ms!" The snapshot time takes…480ms

Wrapping Things Up

In this post, which is the second in our series, we used the T-SQL snapshot backup feature for point-in-time recovery of a database. Consider the business impact of this capability. You can perform an instantaneous full database restore and control your precise recovery point with a point-in-time restore.You can grab the whole script for this blog post on GitHub.

Cyber Resilience & Risk Reduction

Boost cyber resilience and reduce risks with solutions that protect your organization from threats, ensure data recovery, and maintain business continuity.