How do you backup an SQL Server Database to a Network Share?

link|improve this question
We don't mind folks answering their own question, but it's generally best practice to actually submit it as an answer, rather than just answering it in the question itself. This allows it to be voted on and evaluated fairly against other people's answers. – Chris Upchurch Sep 9 '08 at 0:10
feedback

migrated from stackoverflow.com Aug 7 '10 at 14:59

This question came from our site for professional and enthusiast programmers.

2 Answers

Assuming that the SQL Server Service you're using has access to the network location, you can see a hands-on example of how to backup to a network share in either of the following, free, videos:
Backups with SQL Server Enterprise Manager
Backups with SQL Server Management Studio

This video also provides some information on other options and some caveats about backing up to network shares:
SQL Server Backup Best Practices

link|improve this answer
feedback

In order to backup (as part of a schedule SQL Agent Job) to a network share you need to make sure the SQL Server service, and the SQL Server Agent service are running as a Domain account that has access to the destination folder.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.