Even a transaction is nested, it won't be updated until outmost transaction commits. So what's the meaning of nested transaction and what's the specific situation that requires the feature?
|
See the links http://msdn.microsoft.com/en-us/library/ms189336.aspx http://www.codeproject.com/KB/database/sqlservertransactions.aspx |
|||
|
|
|
for example assume such a situation:
now when you want to save B, you first save |
|||
|
|
|
There is nothing called Nested Transactions. The only transaction that SQL considers, is the outermost one. It's the one that's committed or is rolled back. Nested Transactions are syntactically valid, that's all. Suppose you call a procedure from inside a transaction, and that procedure has transactions itself, the syntax allows you to nest transactions, however the only one that has any effect is the outermost. edit: Reference here : http://www.sqlskills.com/BLOGS/PAUL/post/A-SQL-Server-DBA-myth-a-day-(2630)-nested-transactions-are-real.aspx |
|||
|
|