日期:2014-05-18 浏览次数:20727 次
create proc sp_backupdatabase @bak_path nvarchar(4000)='' --备份路径; ,@baktype int = null --备份类型为全备,1为差异备,2为日志备份 ,@type int = null --设置需要备份的库,0为全部库,1为系统库,2为全部用户库,3为指定库,4为排除指定库; ,@dbnames nvarchar(4000)='' --需要备份或排除的数据库,用,隔开,当@type=3或4时生效 ,@overdueDay int = null --设置过期天数,默认天; ,@compression int =0 --是否采用sql2008的压缩备份,0为否,1为采用压缩 as --sql server 2005/2008备份/删除过期备份T-sql 版本v1.0 /* author:perfectaction date :2009.04 desc :适用于sql2005/2008备份,自动生成库文件夹,可以自定义备份类型和备份库名等 可以自定义备份过期的天数 删除过期备份功能不会删除最后一次备份,哪怕已经过期 如果某库不再备份,那么也不会再删除之前过期的备份 如有错误请指正,谢谢. */ set nocount on --开启xp_cmdshell支持 exec sp_configure 'show advanced options', 1 reconfigure with override exec sp_configure 'xp_cmdshell', 1 reconfigure with override exec sp_configure 'show advanced options', 0 reconfigure with override print char(13)+'------------------------' --判断是否填写路径 if isnull(@bak_path,'')='' begin print('error:请指定备份路径') return end --判断是否指定需要备份的库 if isnull(ltrim(@baktype),'')='' begin print('error:请指定备份类型aa:0为全备,1为差异备,2为日志备份') return end else begin if @baktype not between 0 and 2 begin print('error:指定备份类型只能为,1,2: 0为全备,1为差异备,2为日志备份') return end end --判断是否指定需要备份的库 if isnull(ltrim(@type),'')='' begin print('error:请指定需要备份的库,0为全部库,1为系统库,2为全部用户库,3为指定库,4为排除指定库') return end else begin if @type not between 0 and 4 begin print('error:请指定需要备份的库,0为全部库,1为系统库,2为全部用户库,3为指定库,4为排除指定库') return end end --判断指定库或排除库时,是否填写库名 if @type>2 if @dbnames='' begin print('error:备份类型为'+ltrim(@type)+'时,需要指定@dbnames参数') return end --判断指定指定过期时间 if isnull(ltrim(@overdueDay),'')='' begin print('error:必须指定备份过期时间,单位为天,0为永不过期') return end --判断是否支持压缩 if @compression=1 if charindex('2008',@@version)=0 or charindex('Enterprise',@@version)=0 begin print('error:压缩备份只支持sql2008企业版') return end --判断是否存在该磁盘 declare @drives table(drive varchar(1),[size] varchar(20)) insert into @drives exec('master.dbo.xp_fixeddrives') if not exists(select 1 from @drives where drive=left(@bak_path,1)) begin print('error:不存在该磁盘:'+left(@bak_path,1)) return end --格式化参数 select @bak_path=rtrim(ltrim(@bak_path)),@dbnames=rtrim(ltrim(@dbnames)) if right(isnull(@bak_path,''),1)!='\' set @bak_path=@bak_path+'\' if isnull(@dbnames,'')!='' set @dbnames = ','+@dbnames+',' set @dbnames=replace(@dbnames,' ','') --定义变量 declare @bak_sql nvarchar(max),@del_sql nvarchar(max),@i int,@maxid int declare @dirtree_1 table (id int identity(1,1) primary key,subdirectory nvarchar(600),depth int,files int) declare @dirtree_2 table (id int identity(1,1) primary key,subdirectory nvarchar(600),depth int,files int, dbname varchar(300),baktime datetime,isLastbak int) declare @createfolder nvarchar(max),@delbackupfile nvarchar(max),@delbak nvarchar(max) --获取需要备份的库名--------------------start declare @t table(id int identity(1,1) primary key,name nvarchar(max)) declare @sql nvarchar(max) set @sql = 'select name from sys.databases where state=0 and name!=''tempdb'' ' + case when @baktype=2 then ' and recovery_model!=3 ' else '' end + case @type when 0 then 'and 1=1' when 1 then 'and database_id<=4' when 2 then 'and database_id>4' when 3 then 'and charindex('',''+Name+'','','''+@dbnames+''')>0' when 4 then 'and charindex('',''+Name+'','','''+@dbnames+''')=0 and database_id>4' else '1>2' end insert into @t exec(@sql) --获取需要备份的库名---------------------end --获取需要创建的文件夹------------------start insert into @dirtr