本文介绍了为什么我不能使用 t-sql 备份数据库?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我尝试使用以下代码备份数据库:
I try to backup database using code below :
backup database RestaurantManagement to disk = 'd:\'
sqlserver 总是显示以下消息:
sqlserver always show the message below :
消息 3201,级别 16,状态 1,第 3 行无法打开备份设备d:\".操作系统错误 3(系统找不到指定的路径.).消息 3013,级别 16,状态 1,第 3 行BACKUP DATABASE 异常终止.
Msg 3201, Level 16, State 1, Line 3Cannot open backup device 'd:\'. Operating system error 3(The system cannot find the path specified.).Msg 3013, Level 16, State 1, Line 3BACKUP DATABASE is terminating abnormally.
我该如何编码?帮助...
How can i code it ? help...
推荐答案
你需要提供备份文件名,像这样:
You need to provide the backup file name, like this:
backup database RestaurantManagement to disk = 'd:\backups\RestaurantManagement.bak'
这篇关于为什么我不能使用 t-sql 备份数据库?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!