About 11,200,000 results
Open links in new tab
  1. 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 …

  2. 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 …

  3. How do I use transaction with oracle SQL? - Stack Overflow

    Feb 3, 2016 · I am trying to use transaction blocks on a SQL-Console with an Oracle DB. I'm used to use transaxction blocks in PostgreSQL like BEGIN; <simple sql statement> END; but in …

  4. 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...

  5. 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 …

  6. 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 …

  7. 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 …

  8. 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 …

  9. sql server - SQL Transaction was deadlocked - Stack Overflow

    Sometimes I get this kind of exception on not very busy SQL server: Transaction (Process ID 57) was deadlocked on lock resources with another process and has been chosen as the …

  10. java - Rollback transaction after @Test - Stack Overflow

    By default Spring will start a new transaction surrounding your test method and @Before / @After callbacks, rolling back at the end. It works by default, it's enough to have some transaction …