您的位置:首页 > 数据库

Backup or Restore SQL Server Database to another server.

2005-06-22 14:51 761 查看
When you try to backup or restore your database to another network server in the SQL Server Enterprise Manager, you will get following error:

Cannot open backup device "\\networkserver\c$\xx.bak". Device error or device off-line. See the SQL Server error log for more details.
BACKUP DATABASE is terminating abnormally.

How could it have happened? The reason is the MSSQLSERVER service is running under the Localsystem account, and the Localsystem account have no access to the network server as it isn't an authenticated network account. so if you want to dump the database onto another server or a UNC path, you can change the account the MSSQLSERVER service runs under to an account with the relevant network rights.



Remember to restart the MSSQLSERVER service to make your change takes effect.
Hope this helps
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐