一次性備份SQL Server中所有的資料

來源:互聯網
上載者:User

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

  備份處理的預存程序

  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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.