sql server 2000备份还原数据库

转载请注明出处:http://blog.csdn.net/neochan1108/article/details/79248017

备份:

  1. -- Create the backup device for the full MyNwind backup.
  2. EXEC sp_addumpdevice 'disk', 'MyNwind_2',
  3. 'f:\neochan\MyNwind_2.dat'
  4. --Create the log backup device.
  5. EXEC sp_addumpdevice 'disk', 'MyNwindLog1',
  6. 'f:\neochan\MyNwindLog1.dat'
  7. -- Back up the full MyNwind database.
  8. BACKUP DATABASE testDB TO MyNwind_2
  9. -- Update activity has occurred since the full database backup.
  10. -- Back up the log of the MyNwind database.
  11. BACKUP LOG testDB TO MyNwindLog1
  12. -- 清除设备
  13. exec sp_dropdevice 'MyNwind_2'
  14. exec sp_dropdevice 'MyNwindLog1'

还原:

  1. -- 分离数据库
  2. use master
  3. exec killspid 'testDB'
  4. EXEC sp_detach_db 'testDB', 'true'
  5. -- 还原数据库
  6. EXEC sp_addumpdevice 'disk', 'MyNwind_2',
  7. 'f:\neochan\MyNwind_2.dat'
  8. RESTORE DATABASE testDB FROM MyNwind_2 WITH REPLACE,NORECOVERY
  9. EXEC sp_addumpdevice 'disk', 'MyNwindLog1',
  10. 'f:\neochan\MyNwindLog1.dat'
  11. RESTORE LOG testDB FROM MyNwindLog1 WITH REPLACE
  12. exec sp_dropdevice 'MyNwind_2'
  13. exec sp_dropdevice 'MyNwindLog1'
  1. killspid的存储过程为(在master上):
    1. SET QUOTED_IDENTIFIER ON
    2. GO
    3. SET ANSI_NULLS OFF
    4. GO
    5. ALTER    PROCEDURE killspid (@dbname     varchar(20))  AS
    6. begin
    7. declare     @sql     nvarchar(500),@temp   varchar(1000)
    8. declare     @spid     int
    9. set     @sql='declare     getspid     cursor     for
    10. select     spid     from     sysprocesses     where     dbid=db_id('''+@dbname+''')'
    11. exec     (@sql)
    12. open     getspid
    13. fetch     next     from     getspid     into     @spid
    14. while     @@fetch_status<>-1
    15. begin
    16. set   @temp='kill     '+rtrim(@spid)
    17. exec(@temp)
    18. fetch     next     from     getspid     into     @spid
    19. end
    20. close     getspid
    21. deallocate     getspid
    22. end
    23. GO
    24. SET QUOTED_IDENTIFIER OFF
    25. GO
    26. SET ANSI_NULLS ON
    27. GO
上一篇:SQL Server 备份和还原数据库


下一篇:脉络清晰的BP神经网络讲解,赞