SQL Server的异地联机备份
SQL Server 数据库远程备份
一、 建立备份作业
备份A服务器上的SQL Server数据库databasex 到B服务器的共享目录databack中。
步骤如下:
--SQL Server代理
--右键作业
--新建作业
--"常规"项中输入作业名称
--"步骤"项
--新建
--"步骤名"中输入步骤名
--"类型"中选择"Transact-SQL 脚本(TSQL)"
--"数据库"选择执行命令的数据库databasex--"命令"中输入要执行的语句:
declare @strsql varchar(1000)
declare @strfilename varchar(50)
declare @strcmd varchar(50)
declare @strsend varchar(1000)
declare @strdate varchar(50)
exec master..xp_cmdshell 'net use Y: \\B\databack "密码字符串" /user: B\用户名'
set @strsql='backup database databasex to disk=''Y:\'
set @strfilename=databasex+replace(substring(convert(varchar(20),getdate(),120),1,10),'-','')+'.bak'
--print @strsql
set @strsql=@strsql+@strfilename+''' with init'
--print @strsql
exec (@strsql)
--完成后删除映射
exec master..xp_cmdshell 'net use Y: /delete'
二、 许可xp_cmdshell
SQL Server 2005及以上版本中引入的xp_cmdshell 选项是服务器配置选项,使系统管理员能够控制是否可以在系统上执行xp_cmdshell 扩展存储过程。默认情况下,xp_cmdshell 选项在新安装的软件上处于禁用状态,但是可以使用基于策略的管理或运行sp_configure 系统存储过程来启用它,如下面的代码示例所示:
复制代码
-- To allow advanced options to be changed.
EXEC sp_configure 'show advanced options', 1
GO
-- To update the currently configured value for advanced options.
RECONFIGURE
GO
-- To enable the feature.
EXEC sp_configure 'xp_cmdshell', 1
GO
-- To update the currently configured value for this feature.
RECONFIGURE
GO
相关新闻>>
- 发表评论
-
- 最新评论 更多>>