修改預存程序插入自訂的SSIS SQL Server 日誌資訊

來源:互聯網
上載者:User
      在包的日誌資訊中沒有記當包執行成功的日誌,有時候我們只關心包執行成功,還是失敗。

雖然預設情況下SQL Server SSIS記錄提供者沒有記錄包執行的成功資訊,不過,可以修改它所調用的預存程序來實現記錄一條成功的資訊。

1. 包的控制流程中空白處,右鍵->j日誌記錄

2. 添加一個SQL Server SSIS記錄提供者程式,並嚮導配置連接字串。

3. 在詳細資料中選中Onerror事件

在包的第一次運行時,它裝在資料庫中建立一個表和預存程序名字分別為:sysdtslog90,sp_dts_addlogentry。

     接下來我們就可以修改它的預存程序來實現我們自訂的日誌記錄啦!

     下面就實現了一個添加成功資訊的預存程序供有興趣的朋友參考: 

ALTER PROCEDURE [dbo].[sp_dts_addlogentry] 
 @event sysname,  @computer nvarchar(128),  @operator nvarchar(128), 
 @source nvarchar(1024),  @sourceid uniqueidentifier, 
 @executionid uniqueidentifier,  @starttime datetime, 
 @endtime datetime,  @datacode int,  @databytes image, 
 @message nvarchar(2048)AS  

INSERT INTO sysdtslog90 
(  event, computer, operator,   
   source, sourceid, executionid,   
   starttime, endtime, datacode,    
  databytes,  message )  VALUES 
(  @event, @computer,  @operator,  
    @source, @sourceid, @executionid,   
   @starttime, @endtime, @datacode,     
 @databytes,@message )  
--在包執行結束的時候,尋找,如查不存在OnError 事件,說明該包已經執行成功啦
if @event='PackageEnd'
begin
if not exists(select * from sysdtslog90 where executionid=@executionid and [event]='OnError'   )
begin
INSERT INTO sysdtslog90 
(  event, computer, operator,   
   source, sourceid, executionid,   
   starttime, endtime, datacode,    
  databytes,  message )  VALUES 
(  'successed', @computer,  @operator,  
    @source, @sourceid, @executionid,   
   @starttime, @endtime, @datacode,     
 @databytes,'包處理成功!' )  

end
end
相關文章

聯繫我們

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