程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> 關於MYSQL數據庫 >> 一次性備份SQL Server中所有的數據

一次性備份SQL Server中所有的數據

編輯:關於MYSQL數據庫

       本文原始來自網上一篇文章,不過原始的存儲過程有些問題,本文經過驗證並進行了進一步的修正,增加了備份的時候自動增加備份日期,文章內容如下:

      備份處理的存儲過程

      set ANSI_NULLS ON

      set QUOTED_IDENTIFIER ON

      go

      /*--備份所有數據庫

      備份的文件名為數據庫名+日期+.bak

      將所有的用戶數據庫(或指定的數據庫列表)

      備分到指定的目錄下.

      /*--調用示例

      --備份所有用戶數據庫

      exec p_backupdb @bkpath='D:',@dbname=''

      --備份指定數據庫

      exec p_backupdb @bkpath=D:',@dbname='數據庫名稱'

      --*/

      create proc [dbo].[p_backupdb]

      @bkpath nvarchar(260)='D:', --備份文件的存放目錄,不指定則使用SQL默認的備份目錄

      @dbname nvarchar(4000)='' --要備份的數據庫名稱列表,不指定則備份所有用戶數據庫

      as

      declare @sql varchar(8000)

      DECLARE @strdate NVARCHAR(200)

      set @strdate = convert(NVARCHAR(10),getdate(),120)

      set @strdate = REPLACE(@strdate, '-' , '')

      --檢查參數

      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(name like '%'+@dbname+'%')

      --備份處理

      open tb

      fetch next from tb into @dbname

      while @@fetch_status=0

      begin

      set @sql='backup database '+@dbname

      +' to disk='''+@bkpath+@dbname +'_'+@strdate

      +'.bak'' with format'

      exec(@sql)

      fetch next from tb into @dbname

      end

      close tb

      deallocate tb

      go

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved