Overview
When you perform a database backup using SQL Server Management Studio (SSMS), for example, the backup files are typically stored on the same server where the database is running. To perform a backup, you can right-click on the database instance, select the Tasks option, and then choose Backup. A window opens, prompting you to select the type of backup. You can choose whether to save the backup to a disk or specify a URL. This example stores the backup file on a disk, with SSMS automatically configuring the file path. The backup file has a.bak extension.
You can view information about the backup file by running the following SQL query:
Sql
If you want to restore the backup file on a different database server or engine, you must configure both the original database server or engine and the second server or engine as endpoints on CryptoHub.
Sql
Sql
Additional notes
When backing up your database instance, ensure that your secondary database instance has access to the directory where the backup files are stored. To verify this, perform the following steps to obtain the name of your secondary database engine or server:1
Open the Services (
services.msc).2
Locate your database engine or instance and double-click it.
3
Go to the Log On tab to find the account name in the account section (for example,
NT Service\MSSQL$HARISVMINSTANCE3).4
Right-click the folder where your backup files are stored and select Properties,
5
Go to the Security tab and edit the permissions. Add the SQL Server service account for the secondary database instance and grant it full access rights.

