|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Wednesday, May 29, 2013 10:50 AM
Points: 8,
Visits: 142
|
|
| How do you use the Maintenance Plan for a backup to another server. I would like to have all my database backups to not be on the SQL server but on a Backup server.
|
|
|
|
|
SSCertifiable
       
Group: General Forum Members
Last Login: Today @ 2:32 PM
Points: 5,313,
Visits: 11,298
|
|
use an execute SQL task to run a backup command pointing to the UNC path of the share on the backup server.
else use the maintenance plan backup task in the normal way and then have a separate process to copy the backups to the backup server. Personally for speed of recovery I like to have the most recent backups on the SQL server.
---------------------------------------------------------------------
|
|
|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Thursday, June 16, 2011 6:57 AM
Points: 126,
Visits: 102
|
|
When box with SQL server dies,your backups will die. In ssms press f1 and in help window look for BACKUP DATABASE statement.
Ideally I would have production server and its backups on 2 SANs and copy of the backup on some old pc or cheap NAS + the good old tapes ofcourse.
|
|
|
|
|
SSCertifiable
       
Group: General Forum Members
Last Login: Today @ 2:32 PM
Points: 5,313,
Visits: 11,298
|
|
[quote]c00ler01 (1/5/2010) When box with SQL server dies,your backups will die. [quote]
thats why we have DR processes in place. Separate Issue.
thats another reason not to write all your backups to one server, its a SPOF. A backup of the backup server will be required.
---------------------------------------------------------------------
|
|
|
|