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

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

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

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

  7. Database.BeginTransaction vs Transactions.TransactionScope

    TransactionScope offer broader options, BeginTransaction has a simpler API TransactionScope allows to customize the transaction timeout, support nested transactions with various …

  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 to check active transactions in SQL Server 2014?

    Aug 12, 2015 · DBCC OPENTRAN displays information about the oldest active transaction and the oldest distributed and nondistributed replicated transactions, if any, within the transaction …

  10. How do I enable MSDTC on SQL Server? - Stack Overflow

    On the server where the trigger resides, you need to turn the MSDTC service on. You can this by clicking START > SETTINGS > CONTROL PANEL > ADMINISTRATIVE TOOLS > …