基本信息
源码名称:sql 备份数据库语句
源码大小:0.39KB
文件格式:.sql
开发语言:SQL
更新时间:2016-07-05
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍

把备份的数据库写入电脑或共享盘文件夹中


sp_configure 'show advanced options',1
reconfigure
go
sp_configure 'xp_cmdshell',1
reconfigure
go

master..xp_cmdshell  'net use \\10.8.0.228\d$\ERP_DB bioscreen /user:10.8.0.228\administrator'
EXEC sp_configure 'show advanced options', 1;
RECONFIGURE;EXEC sp_configure 'xp_cmdshell', 1;
RECONFIGURE;
backup database beautydb_live to disk='\\10.8.0.228\d$\ERP_DB\beautydb_live20141119.bak'