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

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

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

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

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

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

  7. sql - Transaction count after EXECUTE indicates a mismatching …

    Feb 21, 2014 · Exec USPStoredProcName I get the following error: Transaction count after EXECUTE indicates a mismatching number of BEGIN and COMMIT statements. Previous …

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

  9. How do you clear the SQL Server transaction log?

    Sep 11, 2008 · The transaction log contains a lot of useful data that can be read using a third-party transaction log reader (it can be read manually but with extreme effort though). The …

  10. The transaction log for database 'tempdb' is full due to 'ACTIVE ...

    Jul 25, 2017 · The transaction log for database 'tempdb' is full due to 'ACTIVE_TRANSACTION' Asked 8 years, 3 months ago Modified 1 year, 8 months ago Viewed 149k times