Restore a SQL User Database
When you request the restore of a Microsoft SQL Server user database, Barracuda Backup performs all of the restores required to get to the desired date, as follows:
Restore a full backup of the SQL Server database
Restore the incremental backups in the order in which they were created
In other words, if you want to restore the database to a certain date, simply select the date and that database, and Barracuda Backup restores all intermediate required database revisions.
Use the following steps to restore a Microsoft SQL user database,
On the Restore > Restore Browser page, select the day and time from which you want to restore.
Select the data source from which you want to restore.
Select the database(s) to restore, and click Restore.
Restore a SQL Master Database
If the master database becomes unusable, it must be restored from a previous SQL Dump or backup. All changes made to the master database after the last backup or dump are lost when the dump is reloaded, and therefore must be reapplied.
Use the following steps to recover a damaged master database,
Verify that the Barracuda Backup Agent is installed on the local machine.
Stop the SQL Server Services using the SQL Server Enterprise Manager.
Rebuild the master database; refer to https://learn.microsoft.com/en-us/sql/relational-databases/databases/rebuild-system-databases?view=sql-server-ver16 for detailed procedures for your version of SQL.
Initiate Single User Restore Mode on the SQL database by entering the following from a command prompt; leave the window open after executing the command:
CD \program files\microsoft sql server\<sql version>\mssql\binn
sqlservr -c -m (SQL 7)
sqlservr -c -m -s %<Named Instance>% (SQL 8)
After you complete the restore, remove the -m before you restart the server instance in the normal multi-user mode:
CD \program files\microsoft sql server\<sql version>\mssql\binn
sqlservr (SQL 7)
sqlservr -s %<Named Instance>% (SQL 8)
If login IDs or devices have been added to or dropped from the master database since the last backup, those changes must be reapplied. Restart the server and reapply the changes manually or from saved batch files.
If any databases have been created, expanded, or shrunk since the last dump of the master, those databases must be dropped and then restored. Refer to https://learn.microsoft.com/en-us/sql/t-sql/statements/drop-database-transact-sql?view=sql-server-ver16 and https://learn.microsoft.com/en-us/sql/t-sql/statements/restore-statements-transact-sql?view=sql-server-ver16 for detailed procedures for your version of SQL.
Close the command prompt.
Restart the SQL Service using SQL Enterprise Manager.
Restore a SQL SharePoint Database
Use the following steps to restore a SQL SharePoint database:
Start the Windows SharePoint Services VSS Writer service.
Start the Volume Shadow Copy service.
Shut down any web applications whose content is being restored.