資料庫自動備份

zhaohjjq發表於2014-03-24

1.新建作業 

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

相關文章