Home  >  Article  >  Database  >  sql2005按日期自动备份指定数据库

sql2005按日期自动备份指定数据库

WBOY
WBOYOriginal
2016-06-07 17:48:451512browse

本文章来告诉你如何自动备份数据库哦,可以利用sqlserver自带的功能来实现日期或时间来自动进行处理,有需要的参考一下。

1、打开SQL Server Management Studio

2、启动SQL Server代理

3、点击作业->新建作业

4、"常规"中输入作业的名称

5、新建步骤,类型选T-SQL,在下面的命令中输入下面语句

 代码如下 复制代码

DECLARE @strPath NVARCHAR(200)
set @strPath = convert(NVARCHAR(19),getdate(),120)
set @strPath = REPLACE(@strPath, ':' , '.')
set @strPath = 'D:www.111cn.net' + 'databasename'+@strPath + '.bak'
BACKUP DATABASE [databasename] TO DISK = @strPath WITH NOINIT , NOUNLOAD , NOSKIP , STATS = 10, NOFORMAT

(D:www.111cn.net改为自己的备份路径,databasename修改为想备份的的名称)

6、添加计划,设置频率,时间等。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn