備份SQL Server資料庫

來源:互聯網
上載者:User

標籤:style   ar   os   sp   strong   檔案   on   資料   log   

1、建立批次檔

 

@echo off

set dates=%date:~0,4%%date:~5,2%%date:~8,2%

set rar="%Programfiles%\WinRAR\Winrar.exe"

set rand=%random%

set folder=d:\DBback\%date%

rem 每天建立一個檔案夾,以當天日期命名

  if not exist %folder% md %folder%

  @echo ……正在備份中,請不要關閉程式……

  rem 如果備份sql200,把@osql改成@isql

@osql -Usa -P123456 -i D:\dbback2005.sql -o   D:\sqlback.log

rem  備份後,壓縮成Zip檔案,檔案名稱後有4位隨機數

%rar% a -afzip -ibck -df %folder%\資料庫名%rand% D:\資料庫名.bak

2、建立dbback2005.sql檔案

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

declare @dumpfile varchar(50)

declare @msg varchar(70)

   select @dumpfile = ‘D:\資料庫名.bak‘

   select @msg=convert(char(26),getdate(),9)+‘-----正在清理日誌......‘

   print @msg

backup tran 資料庫名 with truncate_only

if (@@ERROR <> 0 )

begin

   select @msg=convert(char(26),getdate(),9)+‘-----清理日誌失敗或出現異常......‘

   print @msg

end

else

begin

   select @msg=convert(char(26),getdate(),9)+‘-----清理日誌完畢......‘

   print @msg

end

   select @msg=convert(char(26),getdate(),9)+‘-----開始備份northwind資料庫.....‘

   print @msg

backup database 資料庫名 to [email protected]

with init /*init覆蓋現有的備份組,不指定資料容量很大*/

if (@@ERROR <> 0 )

begin

   select @msg=convert(char(26),getdate(),9)+‘-----備份資料失敗或出現異常‘

   print @msg

end

else

begin

   select @msg=convert(char(26),getdate(),9)+‘-----Database Backup完畢‘

   print @msg

END

/* SELECT mm=DATENAME(yy,GETDATE())+DATENAME(mm,GETDATE())+DATENAME(dd,GETDATE())   */

二、備份SQL Server2008

註:修改批次檔,調用dbback2008.sql

1、建立dbback2008.sql檔案

1

2

3

4

5

6

7

8

9

10

DECLARE @name varchar(45)

DECLARE @datetime char(17)

DECLARE @path varchar(255)

DECLARE @bakfile varchar(290)

set @name=‘DB_name‘

set @datetime=CONVERT(char(11),getdate(),120) + REPLACE(CONVERT(char(8),getdate(),108),‘:‘,‘‘)

set @path=‘D:\‘

set @[email protected]+‘/‘[email protected]+‘_‘[email protected]+‘.BAK‘

backup database @name to [email protected] with [email protected]

go

備份SQL Server資料庫

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.