Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
v-regandowner authored Dec 8, 2023
1 parent 285b10f commit edba220
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,27 +99,27 @@ For information on SQL Server restore from Azure Blob Storage, see [SQL Server B

1. **WITH** options (not required):

- **Overwrite the existing database (WITH REPLACE)**
- **Overwrite the existing database (WITH REPLACE)**

- **Preserve the replication settings (WITH KEEP_REPLICATION)**
- **Preserve the replication settings (WITH KEEP_REPLICATION)**

- **Restrict access to the restored database (WITH RESTRICTED_USER)**
- **Restrict access to the restored database (WITH RESTRICTED_USER)**

1. Select an option for the **Recovery state** box. This box determines the state of the database after the restore operation.

- **RESTORE WITH RECOVERY** is the default behavior that leaves the database ready for use by rolling back the uncommitted transactions. No additional transaction logs can be restored. Select this option if you're restoring all of the necessary backups now.
- **RESTORE WITH RECOVERY** is the default behavior that leaves the database ready for use by rolling back the uncommitted transactions. No additional transaction logs can be restored. Select this option if you're restoring all of the necessary backups now.

- **RESTORE WITH NORECOVERY** which leaves the database non-operational, and doesn't roll back the uncommitted transactions. Additional transaction logs can be restored. The database can't be used until it's recovered.
- **RESTORE WITH NORECOVERY** which leaves the database non-operational, and doesn't roll back the uncommitted transactions. Additional transaction logs can be restored. The database can't be used until it's recovered.

- **RESTORE WITH STANDBY** which leaves the database in read-only mode. It undoes uncommitted transactions, but saves the undo actions in a standby file so that recovery effects can be reverted.
- **RESTORE WITH STANDBY** which leaves the database in read-only mode. It undoes uncommitted transactions, but saves the undo actions in a standby file so that recovery effects can be reverted.

1. **Take tail-log backup before restore.** Not all restore scenarios require a tail-log backup. For more information, see **Scenarios That Require a Tail-Log Backup** from [Tail-Log Backups (SQL Server).](../../relational-databases/backup-restore/tail-log-backups-sql-server.md)

1. Restore operations may fail if there are active connections to the database. Check the **Close existing connections option** to ensure that all active connections between [!INCLUDE[ssManStudio](../../includes/ssmanstudio-md.md)] and the database are closed. This check box sets the database to single user mode before the restore operations, and sets the database to multi-user mode when complete.

1. Select **Prompt before restoring each backup** if you wish to be prompted between each restore operation. This isn't necessary unless the database is large and you wish to monitor the status of the restore operation.

For more information about these restore options, see [Restore Database (Options Page)](../../relational-databases/backup-restore/restore-database-options-page.md).
For more information about these restore options, see [Restore Database (Options Page)](../../relational-databases/backup-restore/restore-database-options-page.md).

1. Select **OK**.

Expand Down

0 comments on commit edba220

Please sign in to comment.