码迷,mamicode.com
首页 > 数据库 > 详细

数据库备份

时间:2020-05-18 15:58:19      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:tab   数据库备份   init   isnull   with   bak   ast   substring   data   

SET QUOTED_IDENTIFIER OFF
SET ANSI_NULLS OFF
GO

ALTER proc p_backupdb
@dbname sysname=‘‘, --要备份的数据库名称,不指定则备份当前数据库
@bkpath nvarchar(260)=‘‘, --备份文件的存放目录,不指定则使用SQL默认的备份目录
@bkfname nvarchar(260)=‘‘, --备份文件名,文件名中可以用\DBNAME\代表数据库名,\DATE\代表日期,\TIME\代表时间
@bktype nvarchar(10)=‘DB‘, --备份类型:‘DB‘备份数据库,‘DF‘ 差异备份,‘LOG‘ 日志备份
@appendfile bit=0, --1 追加/ 0 覆盖备份文件
@password nvarchar(20)=‘‘ --为备份文件设置的密码(仅sql2000支持),设置后,恢复时必须提供此密码
as
declare @sql varchar(8000)
if isnull(@dbname,‘‘)=‘‘ set @dbname=db_name()
if isnull(@bkpath,‘‘)=‘‘
begin
select @bkpath=rtrim(reverse(filename)) from master..sysfiles where name=‘master‘
select @bkpath=substring(@bkpath,charindex(‘\‘,@bkpath)+1,4000)
,@bkpath=reverse(substring(@bkpath,charindex(‘\‘,@bkpath),4000))+‘BACKUP\‘
end
if isnull(@bkfname,‘‘)=‘‘ set @bkfname=‘\DBNAME\_\DATE\_\TIME\.BAK‘
set @bkfname=replace(replace(replace(@bkfname,‘\DBNAME\‘,@dbname)
,‘\DATE\‘,convert(varchar,getdate(),112))
,‘\TIME\‘,replace(convert(varchar,getdate(),108),‘:‘,‘‘))
set @sql=‘backup ‘+case @bktype when ‘LOG‘ then ‘log ‘ else ‘database ‘ end +@dbname
+‘ to disk=‘‘‘+@bkpath+@bkfname
+‘‘‘ with ‘+case @bktype when ‘DF‘ then ‘DIFFERENTIAL,‘ else ‘‘ end
+case @appendfile when 1 then ‘NOINIT‘ else ‘INIT‘ end
+case isnull(@password,‘‘) when ‘‘ then ‘‘ else ‘,PASSWORD=‘‘‘+@password+‘‘‘‘ end
exec(@sql)

 

GO

数据库备份

标签:tab   数据库备份   init   isnull   with   bak   ast   substring   data   

原文地址:https://www.cnblogs.com/yyl001/p/12910979.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!