SSIS & RAISEERROR

SKG 66 Reputation points
2021-11-02T10:14:00.733+00:00

Hi All,

I have an SSIS sql exec task with a long running stored procedure, in which i want to persist the progress even if transaction is rolled back.

Is it possible to get notifications of Raiserror in SSIS eventhanders so i can write to another table in SQL.

Thank you!

CREATE PROCEDURE dbo.LongRunningStoredProc
as

BEGIN TRANSACTION

RAISERROR('Loading transaction table #1',10,1)

--Load #1

RAISERROR('Loading transaction table #2',10,1)
--Load #2

RAISERROR('Loading transaction table #3',10,1)

COMMIT TRANSACTION

SQL Server Integration Services
SQL Server Integration Services
A Microsoft platform for building enterprise-level data integration and data transformations solutions.
2,451 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. ZoeHui-MSFT 32,506 Reputation points
    2021-11-04T09:32:05.607+00:00

    Hi @SKG ,

    Temporarily, I did not find a good way to meet your requirement from SSIS side.

    You may keep this case open to see if other experts could provide a resolution.

    In addition, I think it could be more easier to solve from TSQL side, you may have a try.

    If you are not familiar with TSQL, you may create a new case with tag 'sql-server-transact-sql' for advice.

    Regards,

    Zoe


    If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    0 comments No comments