
The transaction log for the database is full - Stack Overflow
I have a long running process that holds open a transaction for the full duration. I have no control over the way this is executed. Because a transaction is held open for the full duration, whe...
Correct use of transactions in SQL Server - Stack Overflow
Apr 14, 2012 · Shouldn't BEGIN TRANSACTION [Tran1] be placed inside TRY? Anyway - very simple and elegant piece of code.
What does a transaction around a single statement do?
I understand how a transaction might be useful for co-ordinating a pair of updates. What I don't understand is wrapping single statements in transactions, which is 90% of what I've ever seen. …
Sql server - log is full due to ACTIVE_TRANSACTION
May 23, 2014 · In my case neither restarting SQL Server nor shrinking the database worked. The db was restored from a backup and I think something was wrong with backup itself. I ended up …
TSQL Try / Catch within Transaction or vice versa?
Apr 14, 2014 · END CATCH --COMMIT TRANSACTION SCHEDULEDELETE --Run this if count correct. --ROLLBACK TRANSACTION SCHEDULEDELETE --Run this if there is any doubt …
sql server - How to use SqlTransaction in C# - Stack Overflow
There is an Update query in progress, the Transaction is started at a higher level on the connection. In order to ensure that all server data is in a valid state for the Update, I need to …
Transaction marked as rollback only: How do I find the cause
Oct 11, 2013 · The status of the transaction is stored in a thread local variable.When the spring intercepts methodC and sets the flag as rollback , your transaction is already marked for roll …
database - What is a "distributed transaction"? - Stack Overflow
A distributed transaction is a transaction on a distributed database (i.e., one where the data is stored on a number of physically separate systems). It's noteworthy because there's a fair …
sql - Transaction count after EXECUTE indicates a mismatching …
Feb 21, 2014 · But when I call The second stored procedure as: Exec USPStoredProcName I get the following error: Transaction count after EXECUTE indicates a mismatching number of …
How to rollback or commit a transaction in SQL Server
Feb 22, 2013 · The good news is a transaction in SQL Server can span multiple batches (each exec is treated as a separate batch.) You can wrap your EXEC statements in a BEGIN …