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

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

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

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

  7. 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 148k times

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

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

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