MS SQL数据库备份和恢复存储过程
作者 佚名技术
来源 数据库编程
浏览
发布时间 2012-02-16
sp; [MaxSize] numeric(20,0) /*允许的最大大小(以字节为单位)*/ ) /* 创建表变量,表结构与临时表基本一样 就是多了两列, 列ids(自增编号列), 列file_path,存放文件的路径 */ declare @tem table( ids smallint identity, /*自增编号列*/ LogicalName nvarchar(128), PhysicalName nvarchar(260), File_path nvarchar(260), Type char(1), FileGroupName nvarchar(128) ) insert into #tem execute(''restore filelistonly from disk=''''''+@filename+'''''''') /*将临时表导入表变量中,并且计算出相应得路径*/ insert into @tem(LogicalName,PhysicalName,File_path,Type,FileGroupName) select LogicalName,PhysicalName,dbo.fn_GetFilePath(PhysicalName),Type,FileGroupName from #tem if @@rowcount>0 begin drop table #tem end select @loop_time=1 select @max_ids=max(ids) /*@tem表的ids列最大数*/ from @tem while @loop_time<=@max_ids begin select @file_bak_path=file_path from @tem where ids=@loop_time select @sql_cmd=''dir ''+@file_bak_path EXEC @proc_result = master..xp_cmdshell @sql_cmd,no_output /*系统存储过程xp_cmdshell返回代码值:0(成功)或1(失败)*/ IF (@proc_result<>0) select @loop_time=@loop_time+1 else BREAK /*没有找到备份前数据文件原有存放路径,退出循环*/ end select @master_path='''' if @loop_time>@max_ids select @flag_file=1 /*备份前数据文件原有存放路径存在*/ else begin select @flag_file=0 /*备份前数据文件原有存放路径不存在*/ select @master_path=dbo.fn_GetFilePath(filename) from master..sysdatabases where name=''master'' end select @sql_sub='''' /*type=''d''是数据文件,type=''l''是日志文件 */ /*@flag_file=1时新的数据库文件还是存放在原来路径,否则存放路径和master数据库路径一样*/ select @sql_sub=@sql_sub+''move ''''''+LogicalName+'''''' to '''''' +case type when ''d'' then case @flag_file when 1 then File_path else @master_path end when ''l'' then case @flag_file when 1 then File_path else @master_path end end +case type when ''d'' then @restore_db_name+''_''+LogicalName+''_data.mdf'''','' when ''l'' then @restore_db_name+''_''+Log |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: sql优化器探讨下一篇: 理解odbc和ole
关于MS SQL数据库备份和恢复存储过程的所有评论