需要做sql2000的备份恢复工作。
在网上找到备份恢复的2个存储过程。
用vb.net迅速写了一个。备份没有问题,但在进行恢复时,发现查询分析器报错服务器: 消息 6104,级别 16,状态 1,行 1
不能用 KILL 来取消您自己的进程。
服务器: 消息 3101,级别 16,状态 1,行 1
因为数据库正在使用,所以未能获得对数据库的排它访问权。
服务器: 消息 3013,级别 16,状态 1,行 1
RESTORE DATABASE 操作异常终止。如果在查询分析器中,在调用proc前先use到master系统数据库,不会发生错误。似乎是use后,对业务应用数据库连接就断开了。
但在.net程序使用中,是使用.net函数进行存储过程调用,无法同时发送use命令到DB;
如:Dim comm As New SqlCommand(sqlfun_name, conn)
   With comm
   .CommandType = CommandType.StoredProcedure
...
而在存储过程中也无法使用use到系统DB,遇到这种情况请问大家是怎么解决的呢?急求解决方案或思路,谢谢了!!

解决方案 »

  1.   

    以下资料仅供参考:--要简化备份/还原操作,可以这样处理: --1.A服务器新建一个目录,用来保存备份的数据库,然后在master数据库中创建此存储过程,并调用它来完成用户数据库的备份. if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[p_backupdb]') and OBJECTPROPERTY(id, N'IsProcedure') = 1) 
    drop procedure [dbo].[p_backupdb] 
    GO /*--备份所有数据库 备份的文件名为数据库名+.bak --邹建 2003.10(引用请保留此信息)--*/ /*--调用示例 --备份所有用户数据库 
    exec p_backupdb @bkpath='c:\',@dbname='' --备份指定数据库 
    exec p_backupdb @bkpath='c:\',@dbname='客户资料,xzkh_new' 
    --*/ 
    create proc p_backupdb 
    @bkpath nvarchar(260)='', --备份文件的存放目录,不指定则使用SQL默认的备份目录 
    @dbname nvarchar(4000)='' --要备份的数据库名称列表,不指定则备份所有用户数据库 
    as 
    declare @sql varchar(8000) --检查参数 
    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 
    else if right(@bkpath,1) <>'\' set @bkpath=@bkpath+'\' --得到要备份的数据库列表 
    if isnull(@dbname,'')='' 
    declare tb cursor local for 
    select name from master..sysdatabases where name not in('master','tempdb','model','msdb') 
    else 
    declare tb cursor local for 
    select name from master..sysdatabases 
    where name not in('master','tempdb','model','msdb') 
    and(@dbname like '%,'+name+',%' or @dbname like name+',%' or @dbname like '%,'+name) --备份处理 
    open tb 
    fetch next from tb into @dbname 
    while @@fetch_status=0 
    begin 
    set @sql='backup database '+@dbname 
    +' to disk='''+@bkpath+@dbname 
    +'.bak'' with init' 
    exec(@sql) 
    fetch next from tb into @dbname 
    end 
    close tb 
    deallocate tb 
    go 
    --2.复制A服务器上面的备份目录(上面新建的)及下面的所有文件到B服务器 
    --然后在master数据库中创建下面的存储过程,然后用它来恢复所有的用户数据库. if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[p_RestoreDb]') and OBJECTPROPERTY(id, N'IsProcedure') = 1) 
    drop procedure [dbo].[p_RestoreDb] 
    GO /*--恢复指定目录下的所有数据库 恢复的数据库名为备份文件名(不含扩展名) 
    备份文件的扩展名固定为.bak --邹建 2003.10(引用请保留此信息)--*/ /*--调用示例 
    --恢复指定目录下的所有数据库 
    exec p_RestoreDb @bkpath='c:\' --恢复指定目录下的指定数据库 
    exec p_RestoreDb @bkpath='c:\',@bkfile='客户资料,xzkh_new' 
    --*/ 
    create proc p_RestoreDb 
    @bkpath nvarchar(1000)='', --定义备份文件的存放目录,默认为SQL的备份目录 
    @bkfile nvarchar(4000)='', --定义要恢复的备份文件名,不含扩展名 
    @dbpath nvarchar(260)='', --恢复后的数据库存放目录,不指定则为SQL的默认数据目录 
    @overexist bit=1,       --是否覆盖已经存在的数据库,仅@retype为'DB'/'DBNOR'是有效 
    @killuser bit=1   --是否关闭用户使用进程,仅@overexist=1时有效 
    as 
    declare @sql varchar(8000),@dbname sysname 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 
    else if right(@bkpath,1) <>'\' set @bkpath=@bkpath+'\' --得到恢复后的数据库存放目录 
    if isnull(@dbpath,'')='' 
    begin 
    select @dbpath=rtrim(reverse(filename)) from master..sysfiles where name='master' 
    select @dbpath=reverse(substring(@dbpath,charindex('\',@dbpath),4000)) 
    end 
    else if right(@dbpath,1) <>'\' set @dbpath=@dbpath+'\' --得到指定目录下的所有备份文件 
    create table #t(fname varchar(260),depth int,isf bit) 
    insert into #t exec master..xp_dirtree @bkpath,1,1 if isnull(@bkfile,'')='' 
    declare tb cursor local for select fn=left(fname,patindex('%.bak',fname)-1) from #t 
    where isf=1 and fname like '%.bak'  --取.bak文件 
    else 
    begin 
    set @bkfile=','+replace(@bkfile,',','.bak,')+'.bak,' 
    declare tb cursor local for select fn=left(fname,patindex('%.bak',fname)-1) from #t 
    where isf=1 and fname like '%.bak' and @bkfile like '%,'+fname+',%' 
    end --恢复数据库处理 
    open tb 
    fetch next from tb into @dbname 
    while @@fetch_status=0 
    begin 
    --生成数据库恢复语句 
    set @sql='restore database '+@dbname 
    +' from disk='''+@bkpath+@dbname+'.bak''' 
    +' with RECOVERY' 
    +case when @overexist=1 then ',replace' else '' end --添加移动逻辑文件的处理 
    --从备份文件中获取逻辑文件名 
    declare @lfn nvarchar(128),@tp char(1),@i int --创建临时表,保存获取的信息 
    create table #tb(ln nvarchar(128),pn nvarchar(260),tp char(1),fgn nvarchar(128),sz numeric(20,0),Msz numeric(20,0)) 
    --从备份文件中获取信息 
    insert into #tb exec('restore filelistonly from disk='''+@bkpath+@dbname+'.bak''') 
    declare #f cursor local for select ln,tp from #tb order by tp 
    open #f 
    fetch next from #f into @lfn,@tp 
    set @i=0 
    while @@fetch_status=0 
    begin 
    select @sql=@sql+',move '''+@lfn+''' to '''+@dbpath+@dbname+cast(@i as varchar) 
    +case @tp when 'D' then '.mdf''' else '.ldf''' end 
    ,@i=@i+1 
    fetch next from #f into @lfn,@tp 
    end 
    close #f 
    deallocate #f 
    drop table #tb --关闭用户进程处理 
    if @overexist=1 and @killuser=1 
    begin 
    declare @spid varchar(20) 
    declare #spid cursor for 
    select spid=cast(spid as varchar(20)) from master..sysprocesses where dbid=db_id(@dbname) 
    open #spid 
    fetch next from #spid into @spid 
    while @@fetch_status=0 
    begin  
    exec('kill '+@spid) 
    fetch next from #spid into @spid 
    end  
    close #spid 
    deallocate #spid 
    end --恢复数据库 
    exec(@sql) 
    fetch next from tb into @dbname 
    end 
    close tb 
    deallocate tb 
    go --上面的方法不包括用户移植,如果要移植用户,还要做下面的工作: --1.A服务器生成安全性中的用户 
    sql200企业管理器 
      --右键任意数据库 
      --所有任务 
      --生成SQL脚本 
      -- <选项>中,"安全性选项",选择"包含创建数据库及用户权限","编写 SQL Server 登录(Windows NT 和 SQL Server 登录)脚本" 
      --其他所有的选项保持默认值 
      --然后确定,将其保存成一个.sql文件 --2.B服务器,在恢复数据库前,在查询分析器中执行上面的sql文件,完成用户的移植 
      

  2.   

    na jiu lian dao master shu ju ku shang cao zuo 
      

  3.   

    服务器: 消息 6104,级别 16,状态 1,行 1 
    不能用 KILL 来取消您自己的进程。 -->>难道你用kill消除自身的进程?服务器: 消息 3101,级别 16,状态 1,行 1 
    因为数据库正在使用,所以未能获得对数据库的排它访问权。 -->>恢复数据库的时候,需要先关闭要恢复的数据库。可以使用use 来切换到其他的数据库,然后再恢复
      

  4.   

    服务器: 消息 6104,级别 16,状态 1,行 1 
    不能用 KILL 来取消您自己的进程。 
    ----------------------------------------- 这表明你自己在用你要 kill 的数据库, 修改连接字符串并连接到 master 中就可以了
      

  5.   

    谢谢各位,问题已经解决了,是要先断开,再恢复,最要谢谢dawugui贴了那么好的代码 。