SqlServer2008数据库自动备份设置

时间:2021-12-16 06:44:11

1、常规:   

右击新建作业,命名为:kobe_Backup。

2、步骤:   

步骤名称:Backup, 类型:Transact-SQL脚本(T-SQL),运行身份不管, 选择要备份的数据库,命令框里输入以下的代码:   

注意:F:\kobe_Backup\  指路径,需要手动创建!

DECLARE @strPath NVARCHAR(200)

set @strPath = convert(NVARCHAR(19),getdate(),120)

set @strPath = REPLACE(@strPath, ':' , '.')

set @strPath = 'F:\kobe_Backup\' + @strPath + '.bak'

BACKUP DATABASE [数据库名] TO DISK = @strPath WITH NOINIT , NOUNLOAD , NOSKIP , STATS

3、计划:   

名称:p,时间按照需求设置。