if exists( select * from sysobjects where name=''''''''pr_backup_db'''''''' and xtype=''''''''p'''''''' ) begin drop proc pr_backup_db end
go
/*备份数据库*/ create proc pr_backup_db @flag varchar(10) out, @backup_db_name varchar(128), @filename varchar(1000) --路径+文件名字 as declare @sql nvarchar(4000),@par nvarchar(1000) select @par=''''''''@filename varchar(1000)'''''''' select @sql=''''''''BACKUP DATABASE ''''''''+@backup_db_name+'''''''' to disk=@filename with init'''''''' execute sp_executesql @sql,@par,@filename select @flag=''''''''ok'''''''' go
if exists( select * from sysobjects where name=''''''''fn_GetFilePath'''''''' and xtype=''''''''fn'''''''' ) begin drop function fn_GetFilePath end go
/*创建函数,得到文件得路径*/ create function fn_GetFilePath(@filename nvarchar(260)) returns nvarchar(260) as begin declare @file_path nvarchar(260) declare @filename_reverse nvarchar(260) select @filename_reverse=reverse(@filename) select @file_path=substring(@filename,1,len(@filename)+1-charindex(''''''''\'''''''',@filename_reverse)) return @file_path end
go
if exists( select * from sysobjects where name=''''''''pr_restore_db'''''''' and xtype=''''''''p'''''''' ) begin drop proc pr_restore_db end go
create proc pr_restore_db /*恢复数据库*/ @flag varchar(20) out, /*过程运行的状态标志,是输入参数*/ @restore_db_name nvarchar(128), /*要恢复的数据名字*/ @filename nvarchar(260) /*备份文件存放的路径+备份文件名字*/ as declare @proc_result tinyint /*返回系统存储过程xp_cmdshell运行结果*/ declare @loop_time smallint /*循环次数*/ declare @max_ids smallint /*@tem表的ids列最大数*/ declare @file_bak_path nvarchar(260) /*原数据库存放路径*/ declare @flag_file bit /*文件存放标志*/ declare @master_path nvarchar(260) /*数据库master文件路径*/ declare @sql nvarchar(4000),@par nvarchar(1000) declare @sql_sub nvarchar(4000) declare @sql_cmd nvarchar(4000) /* 判断参数@filename文件格式合法性,以防止用户输入类似d: 或者 c:\a\ 等非法文件名 参数@filename里面必须有''''''''\''''''''并且不以''''''''\''''''''结尾 */ if right(@filename,1)<>''''''''\'''''''' and charindex(''''''''\'''''''',@filename)<>0 begin select @sql_cmd=''''''''dir ''''''''+@filename EXEC @proc_result = master..xp_cmdshell @sql_cmd,no_output IF (@proc_result<>0) /*系统存储过程xp_cmdshell返回代码值:0(成功)或1(失败)*/ begin select @flag=''''''''not exist'''''''' /*备份文件不存在*/ return /*退出过程*/ end /*创建临时表,保存由备份集内包含的数据库和日志文件列表组成的结果集*/ create table #tem( LogicalName nvarchar(128), /*文件的逻辑名称*/ PhysicalName nvarchar(260) , /*文件的物理名称或操作系统名称*/ Type char(1), /*数据文件 (D) 或日志文件 (L)*/ FileGroupName nvarchar(128), /*包含文件的文件组名称*/ [Size] numeric(20,0), /*当前大小(以字节为单位)*/ [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+''''''''_''''''''+LogicalName+''''''''_log.ldf'''''''''''''''','''''''' end from @tem select @sql=''''''''RESTORE DATABASE @db_name FROM DISK=@filename with '''''''' select @sql=@sql+@sql_sub+''''''''replace'''''''' select @par=''''''''@db_name nvarchar(128),@filename nvarchar(260)'''''''' print @sql execute sp_executesql @sql,@par,@db_name=@restore_db_name,@filename=@filename select @flag=''''''''ok'''''''' /*操作成功*/ end else begin SELECT @flag=''''''''file type error'''''''' /*参数@filename输入格式错误*/ end
--备份数据库test_database declare @fl varchar(10) execute pr_backup_db @fl out,''''''''test_database'''''''',''''''''c:\test_database.bak'''''''' select @fl
--恢复数据库,输入的参数错误 declare @fl varchar(20) exec pr_restore_db @fl out,''''''''sa'''''''',''''''''c:\'''''''' select @fl
--恢复数据库,即创建数据库test_database的复本test_db declare @fl varchar(20) exec pr_restore_db @fl out,''''''''test_db'''''''',''''''''c:\test_database.bak'''''''' select @fl
上面写了MS SQL数据库备份和恢复存储过程
自感觉功能不太齐全,就重新写了一加强版本,经过测试成功! 先将代码发布出来,大家共享。 如有发现BUG,请大家指教或EMAIL:aierong@vip.sina.com
/**//*备份数据库*/ create proc pr_backup_db @flag varchar(20) out, @backup_db_name varchar(128), @filename varchar(1000)--路径+文件名字 as declare @sql nvarchar(4000),@par nvarchar(1000) if not exists( select * from master..sysdatabases where name=@backup_db_name ) begin select @flag=''''''''db not exist''''''''/**//*数据库不存在*/ return end else begin if right(@filename,1)<>'''''''''''''''' and charindex('''''''''''''''',@filename)<>0 begin select @par=''''''''@filename varchar(1000)'''''''' select @sql=''''''''BACKUP DATABASE ''''''''+@backup_db_name +'''''''' to disk=@filename with init'''''''' execute sp_executesql @sql,@par,@filename select @flag=''''''''ok'''''''' return end else begin select @flag=''''''''file type error''''''''/**//*参数@filename输入格式错误*/ return end end
GO
/**//*创建函数,得到文件得路径*/ create function fn_GetFilePath(@filename nvarchar(260)) returns nvarchar(260) as begin declare @file_path nvarchar(260) declare @filename_reverse nvarchar(260) select @filename_reverse=reverse(@filename) select @file_path=substring(@filename,1,len(@filename)+1-charindex('''''''''''''''',@filename_reverse)) return @file_path end
GO
/**//*恢复数据库*/ CREATEproc pr_restore_db /**//* ------------------------------------------------ Create Time:2004-03-20 Update Time:2004-03-29 11:05 Author:aierong Remark:恢复数据库
------------------------------------------------ */ /**//*过程运行的状态标志,是输入参数*/ @flag varchar(20) out, /**//*要恢复的数据名字*/ @restore_db_name nvarchar(128), /**//*备份文件存放的路径+备份文件名字*/ @filename nvarchar(260) as /**//*返回系统存储过程xp_cmdshell运行结果*/ declare @proc_result tinyint /**//*循环次数*/ declare @loop_time smallint /**//*@tem表的ids列最大数*/ declare @max_ids smallint /**//*原数据库存放路径*/ declare @file_bak_path nvarchar(260) /**//*文件存放标志*/ declare @flag_file bit /**//*数据库master文件路径*/ declare @master_path nvarchar(260) declare @sql nvarchar(4000),@par nvarchar(1000) declare @sql_sub nvarchar(4000) declare @sql_cmd nvarchar(100) declare @sql_kill nvarchar(100) /**//* 判断参数@filename文件格式合法性,以防止用户输入类似d: 或者 c:a 等非法文件名 参数@filename里面必须有''''''''''''''''并且不以''''''''''''''''结尾 */ if right(@filename,1)<>'''''''''''''''' and charindex('''''''''''''''',@filename)<>0 begin select @sql_cmd=''''''''dir ''''''''+@filename EXEC @proc_result = master..xp_cmdshell @sql_cmd,no_output /**//*系统存储过程xp_cmdshell返回代码值:0(成功)或1(失败)*/ IF (@proc_result<>0) begin /**//*备份文件不存在*/ select @flag=''''''''not exist'''''''' /**//*退出过程*/ return end /**//*创建临时表,保存由备份集内包含的数据库和日志文件列表组成的结果集*/ create table #tem( /**//*文件的逻辑名称*/ LogicalName nvarchar(128), /**//*文件的物理名称或操作系统名称*/ PhysicalName nvarchar(260) , /**//*数据文件 (D) 或日志文件 (L)*/ Type char(1), /**//*包含文件的文件组名称*/ FileGroupName nvarchar(128), /**//*当前大小(以字节为单位)*/ [Size] numeric(20,0), /**//*允许的最大大小(以字节为单位)*/ [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 /**//*@tem表的ids列最大数*/ select @max_ids=max(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 thenFile_path else @master_path end when ''''''''l'''''''' then case@flag_file when 1 thenFile_path else @master_path end end +case type when ''''''''d'''''''' then @restore_db_name +''''''''_DATA'''''''' /**//*给文件编号*/ +convert(sysname,ids) +''''''''.'''''''' /**//*给文件加入后缀名,mdf or ndf*/ +right(PhysicalName,3) +'''''''''''''''''''''''','''''''' when ''''''''l'''''''' then @restore_db_name +''''''''_LOG'''''''' /**//*给文件编号*/ +convert(sysname,ids) +''''''''.'''''''' /**//*给文件加入后缀名,mdf or ndf*/ +right(PhysicalName,3) +'''''''''''''''''''''''','''''''' end from @tem select @sql=''''''''RESTORE DATABASE @db_name '''''''' +''''''''FROM DISK=@filename with '''''''' select @sql=@sql+@sql_sub+''''''''replace'''''''' select @par=''''''''@db_name nvarchar(128),@filename nvarchar(260)'''''''' /**//*关闭相关进程,把相应进程状况导入临时表中*/ select identity(int,1,1) ids, spid into #temp from master..sysprocesses where dbid=db_id(@restore_db_name) /**//*找到相应进程*/ if @@rowcount>0 begin select @max_ids=max(ids) from #temp select @loop_time=1 while @loop_time<=@max_ids begin select @sql_kill=''''''''kill ''''''''+convert(nvarchar(20),spid) from #temp where ids=@loop_time execute sp_executesql @sql_kill select @loop_time=@loop_time+1 end end drop table #temp execute sp_executesql @sql, @par, @db_name=@restore_db_name, @filename=@filename /**//*操作成功*/ select @flag=''''''''ok'''''''' end else begin /**//*参数@filename输入格式错误*/ SELECT @flag=''''''''file type error'''''''' end
GO
/*运行*/
--备份数据库test_database declare @fl varchar(10) execute pr_backup_db @fl out,''''''''test_database'''''''',''''''''c:\test_database.bak'''''''' select @fl
--恢复数据库,输入的参数错误 declare @fl varchar(20) exec pr_restore_db @fl out,''''''''sa'''''''',''''''''c:\'''''''' select @fl
--恢复数据库,即创建数据库test_database的复本test_db declare @fl varchar(20) exec pr_restore_db @fl out,''''''''test_db'''''''',''''''''c:\test_database.bak'''''''' select @fl
具体可以看 http://dev.csdn.net/article/28/28463.shtm
|
|
|
|
相关推荐
Ms-SQL备份还原工具是一款专为Microsoft SQL Server设计的实用程序,它提供了便捷的方式来管理和执行数据库的备份与恢复操作。这款工具以其用户友好的Windows界面和对SQL Server身份验证及Windows身份验证的支持而受...
忘记MS-SQL Server数据库的管理员密码虽然是一种常见的问题,但通过使用`sp_password`存储过程,我们可以有效地解决这一难题。不过,为了避免未来再次遇到类似情况,建议定期更改密码并实施良好的密码管理策略,同时...
本篇文章将详细介绍在MS SQL中如何进行数据库的备份和还原,以便于在数据丢失或系统故障时能迅速恢复。 一、通过企业管理器进行单个数据库备份 这是最基础的备份方式,适合于偶尔需要备份的情况。首先,打开SQL ...
这使得我们可以在脚本中执行SQL Server的T-SQL备份命令,或者启动7-Zip进行文件压缩。 4. **T-SQL 备份命令**: 使用T-SQL的`BACKUP DATABASE`语句可以创建数据库的全备份。在脚本中,你需要指定要备份的数据库...
本资源包"计算机软件-编程源码-ms sql 2000数据库的备份与恢复(例程下载).zip"显然专注于SQL Server 2000数据库的备份和恢复过程,这对于确保数据安全和业务连续性至关重要。 首先,我们来讨论数据库备份。在SQL ...
这种情况通常发生在将数据从一台SQL Server数据库服务器备份并恢复到另一台服务器的过程中。本文将详细介绍这一问题的原因、表现形式以及如何有效解决。 #### 问题原因分析 当我们在源服务器上执行数据库备份并在...
本篇文章将详细介绍如何使用SQL Server 2000进行数据库的附加、备份和还原操作,这些都是数据库管理员日常工作中不可或缺的部分。 首先,我们来讨论数据库的“附加”操作。当一个数据库文件(MDF)和日志文件(LDF...
在MS-SQL 2005中,这一过程可以通过一系列的配置和脚本来实现,以下将详细讲解这一过程。 首先,我们来看如何进行数据库的完整备份。完整备份是数据库备份的基础,它会保存数据库的所有数据,包括结构、数据和日志...
标题中的“只能还原MS SQL数据库”表明这是一个专为恢复Microsoft SQL Server数据库而设计的应用程序。在IT领域,数据库是存储和管理数据的核心组件,而SQL Server是微软公司提供的一种关系型数据库管理系统,广泛...
### 基于SQL Server的数据库备份与还原 #### 一、引言 在现代信息技术领域,数据库系统作为数据管理的核心部分,在企业运营和个人信息管理中扮演着至关重要的角色。然而,无论是硬件故障还是软件错误,都可能对...
在IT行业中,数据库管理系统是企业数据存储和处理的关键部分,而SQL Server 2000作为微软提供的一个经典版本,其存储过程的使用和管理对于系统性能和安全性至关重要。存储过程是预编译的SQL语句集合,允许开发人员...
在SQL Server领域,"sql server 还原工具"是一款强大的辅助工具,专为数据库管理员和开发人员设计,旨在简化管理和恢复过程。这款工具的主要功能是针对Microsoft SQL Server数据库管理系统(MS SQL Server)的核心...
《MS-SERVER2000安装过程详解》 在IT领域,Microsoft SQL Server 2000是一款重要的关系型数据库管理系统,广泛应用于企业级数据存储和管理。对于想要成为开发人员或数据库管理员的初学者,熟悉SQL Server 2000的...
在SQL Server数据库中,存储过程和视图是重要的数据库对象,它们经常被用来封装复杂的查询逻辑和业务规则。然而,为了保护数据安全和商业机密,有时我们会对这些对象进行加密。本文档“万能破解SQL存储过程加密”...
本主题将深入探讨SQL Server 2000数据库的备份与恢复过程,这是确保数据安全和业务连续性的重要环节。 首先,备份是防止数据丢失的关键步骤。SQL Server 2000提供了多种类型的备份,包括完整备份、差异备份、日志...
第三章 - T-SQL基础:T-SQL是SQL Server中用于查询和管理数据的语言,这一章将深入探讨其语法、基本操作,如SELECT、INSERT、UPDATE、DELETE语句,以及存储过程和函数的使用。 第四章 - 数据库管理:此部分将介绍...
MS SQL Server数据库技巧总绍与T-SQL主要语句详解 在IT领域,数据库管理是至关重要的,尤其在企业级应用中,Microsoft SQL Server(MS SQL Server)作为一款广泛使用的数据库管理系统,其强大的功能和高效的性能...
- 存储过程是一组预先编译的SQL语句,可重复使用,提高效率并降低网络流量。 - 触发器在满足特定条件时自动执行,用于实现业务规则或数据验证。 8. **自定义函数** - 自定义函数允许创建用户自己的函数,扩展SQL...
2.1 SQL Server 数据库存储结构 2.1.1 数据库分类 2.1.2 数据库文件组成 2.1.3 数据库文件存储机制 2.1.4 事务日志工作机制 2.2 数据库设计规划 2.2.1 Raid技术介绍 2.2.2 文件的增长...