首页 > 数据库技术 > 详细

sql server数据库备份语句

时间:2016-06-16 18:21:00      阅读:324      评论:0      收藏:0      [点我收藏+]

DECLARE @strPath NVARCHAR(200)


set @strPath = convert(NVARCHAR(19),getdate(),120)
set @strPath = REPLACE(@strPath, ‘:‘ , ‘.‘)
set @strPath = ‘备份路径‘+‘CopyBSS‘+@strPath + ‘.bak‘

backup database 数据库名 to disk = @strPath
 with noinit , nounload , noskip , STATS = 10, NOFORMAT

sql server数据库备份语句

原文:http://lujinxiong.blog.51cto.com/9367514/1789901

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!