SQL Server 定時備份資料庫(作業)

來源:互聯網
上載者:User
use iSignatureKey --資料名稱

if exists (select * from dbo.sysobjects where id=object_id(N'[dbo].mysp_All_iSignatureKey') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop  procedure [dbo].mysp_All_iSignatureKey
go

CREATE PROCEDURE mysp_All_iSignatureKey
@bakpath varchar(4000) --備份路徑
AS           
BACKUP   DATABASE   iSignatureKey  TO   DISK   =   @bakpath 
GO

if exists (select * from dbo.sysobjects where id=object_id(N'[dbo].[p_createjob]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop  procedure [dbo].[p_createjob]
go

create proc p_createjob
 @jobname varchar(100),--作業名稱
 @sql varchar(8000), --要執行的命令
 @serverName sysname='',--job server名
 @dbname sysname='', --預設為當前的資料庫名
 @freqtype varchar(6)='day', --時間周期,month 月,week 周,day 日
 @fsinterval int=1, --相對於每日的重複次數
 @time int=170000 --開始執行時間,對於重複執行的作業,將從0點到23:59分
as
if isnull(@dbname, '')='' set @dbname=db_name()
--建立作業
if exists(select 1 from msdb..sysjobs where name=@jobname)
exec msdb..sp_delete_job @job_name=@jobname
exec msdb..sp_add_job @job_name=@jobname
--建立作業步驟
exec msdb..sp_add_jobstep   @job_name=@jobname,
 @step_name='BakdataStart',
 @subsystem='TSQL',
 @database_name=@dbname,
 @command=@sql,
 @retry_attempts=5,--重試次數
 @retry_interval=5--稍候再試
--建立調度
declare @ftype int, @fstype int, @ffactor int
select @ftype=case @freqtype when 'day' then 4
when 'week' then 8
when 'month' then 16 end
,@fstype=case @fsinterval when 1 then 0 else 8 end
if @fsinterval<>1 set @time=0
set @ffactor=case @freqtype when 'day' then 0 else 1 end

exec msdb..sp_add_jobschedule @job_name=@jobname,
@name = '時間安排',
@freq_type=@ftype,---每天,8 每周,16 每月
@freq_interval=1,--重複執行次數
@freq_subday_interval=@fsinterval,--週期
@freq_recurrence_factor=@ffactor,
@active_start_time=@time--下午17:00:00分執行

if @servername=''
set @servername=@@servername
EXEC msdb..sp_add_jobserver @job_name=@jobname,
@server_name=@servername
go

exec p_createjob @jobname='iSignatureKey.bak',
@sql='exec mysp_All_iSignatureKey @bakpath="d:\iSignatureKey.bak"', --bakpath備份路徑
@dbname='iSignatureKey',
@freqtype='day',
@time='235959' --你起備份的時間HHMMSS(HH:24制小時,MM:分鐘,SS:秒)

相關文章

聯繫我們

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