开发者

How do I create a stored procedure whose effects cannot be rolled back?

开发者 https://www.devze.com 2023-04-04 03:09 出处:网络
I want to have a stored procedure that inserts 开发者_开发技巧a record into tableA and updates record(s) in tableB.

I want to have a stored procedure that inserts 开发者_开发技巧a record into tableA and updates record(s) in tableB.

The stored procedure will be called from within a trigger.

I want the inserted records in tableA to exist even if the outermost transaction of the trigger is rolled back.

The records in tableA are linearly linked and I must be able to rebuild the linear connection.

Write access to tableA is only ever through the triggers.

How do I go about this?


What you're looking for are autonomous transactions, and these do not exist in SQL Server today. Please vote / comment on the following items:

http://connect.microsoft.com/SQLServer/feedback/details/296870/add-support-for-autonomous-transactions

http://connect.microsoft.com/SQLServer/feedback/details/324569/add-support-for-true-nested-transactions

What you can consider doing is using xp_cmdshell or CLR to go outside the SQL engine to come back in (these actions can't be rolled back by SQL Server)... but these methods aren't without their own issues.

Another idea is to use INSTEAD OF triggers - you can log/update other tables and then just decide not to proceed with the actual action.

EDIT

And along the lines of @VoodooChild's suggestion, you can use a @table variable to temporarily hold data that you can reference after the rollback - this data will survive a rollback, unlike an insert into a #temp table.


See this post Logging messages during a transaction for a (somewhat convoluted) effective way of achieving what you want: the insert into the logging table is persisted even if the transaction had rolled back. The method Simon proposes has several advantages: requires no changes to the caller, is fast and is scalable, and it can be used safely from within a trigger. Simon's example is for logging, but the insert can be for anything.


One way is to create a linked server that points to the local server. Stored procedures executed over a linked server won't be rolled back:

EXEC LinkedServer.DbName.dbo.sp_LogInfo 'this won''t be rolled back'

You can call a remote stored procedure from a trigger.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号