Is that possible to restore to different server?
practic
Posts: 2
I'd like to restore backup from Server A on Server B. Is that possible?
Let's say I backed up database on development server and then I'd like to restore it on QA server. Can I do that? The problem is I see only one server name in "Database to restore to SQL Server" dropdown.
Let's say I backed up database on development server and then I'd like to restore it on QA server. Can I do that? The problem is I see only one server name in "Database to restore to SQL Server" dropdown.
Comments
E.g. you select a backup file on Server A, in 'D:\Backups\pubs.sqb'. You cannot restore this file to Server B because that location is not valid on Server B.
Options:
- on Server A, open a network share containing the backup file that is accessible by the SQL Backup Agent service on Server B. In the Restore Wizard, select Server B, and enter the path to the network share and backup file manually.
- copy the file to Server B, locate the backup file manually from the GUI, and proceed to perform the restore
- perform the restore manually using the extended stored procedure, accesing the file via a network share e.g.
EXEC master..sqlbackup '-sql "RESTORE DATABASE pubs FROM DISK = [\\ServerA\shared\pubs.sqb]" '
assuming the SQL Backup Agent service startup user has rights to access the network share.
SQL Backup Consultant Developer
Associate, Yohz Software
Beyond compression - SQL Backup goodies under the hood, updated for version 8