Reputation: 4275
What is Implict Transaction. What is scope? Which command included this transaction group?
Upvotes: 1
Views: 123
Reputation: 391496
According to the documentation for Implicit Transactions:
This means that:
Your question could also be asking about the difference between implicit and explicit transactions.
Microsoft SQL Server always runs modifications (simplified, there are some things that runs without, like bulk insert) in a transaction. In other words, if you haven't specifically opened a transaction, the following is how every modification is run:
try ... modification here (update, insert, delete...) on exception rollback on success commit
Upvotes: 1
Reputation: 1824
Refer these links...
http://msdn.microsoft.com/en-us/library/ms188317.aspx
http://msdn.microsoft.com/en-us/library/aa213073%28v=sql.80%29.aspx
Upvotes: 0