
writing a transaction in t-sql and error handling - Stack Overflow
Apr 6, 2017 · Do u think there is a better way to write a transaction in t-sql? Is there a better approach that improves maintainability and performance of the application that uses this …
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 · I have 2 commands and need both of them executed correctly or none of them executed. So I think I need a transaction, but I don't know how to use it correctly. What's the …
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 - 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 …
Sql server - log is full due to ACTIVE_TRANSACTION
May 23, 2014 · Sql server - log is full due to ACTIVE_TRANSACTION [duplicate] Asked 11 years, 5 months ago Modified 8 years, 6 months ago Viewed 371k times
concurrency - What is a database transaction? - Stack Overflow
May 1, 2023 · A transaction is a unit of work that you want to treat as "a whole." It has to either happen in full or not at all. A classical example is transferring money from one bank account to …
SQL Server BEGIN/END vs BEGIN TRANS/COMMIT/ROLLBACK
Feb 10, 2016 · "BEGIN initiates a transaction block, that is, all statements after a BEGIN command will be executed in a single transaction until an explicit COMMIT or ROLLBACK is …
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 …
Proper way to use a transaction around multiple inserts or updates
Apr 24, 2012 · What is the proper way to test for insert/update failures and rollback this transaction if there are any? I don't think what I have will work since my inserts/updates are 3 …