About 3,680,000 results
Open links in new tab
  1. sql server - SQL Transaction was deadlocked - Stack Overflow

    Transaction (Process ID 57) was deadlocked on lock resources with another process and has been chosen as ...

  2. What is the difference between a query and transaction in SQL?

    Apr 23, 2021 · BEGIN TRANSACTION: Tell the database that a transaction is beginning. All changes within the transaction are invisible to other users while the transaction is "active". …

  3. c# - How to use TransactionScope properly? - Stack Overflow

    Aug 19, 2015 · The code within the methods you call need to be transaction aware and enlist in the active transaction. This means creating or using classes which are resource managers …

  4. Correct use of transactions in SQL Server - Stack Overflow

    Apr 14, 2012 · If one wants a "visually nested syntax" so to say, i.e. such that begin transaction is nested under begin try, then a condition should be added before rollback transaction, which is: …

  5. What does a transaction around a single statement do?

    Jul 23, 2009 · BEGIN TRANSACTION / COMMIT "extends" this locking functionality to the work done by multiple statements, but it adds nothing to single statements. However, the database …

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

    Feb 21, 2014 · This was the problem for me, but was less obvious because we were wrapping several sproc calls in one big transaction via our data access layer-- so just looking at the …

  7. The transaction log for the database is full - Stack Overflow

    • A transaction is deferred (SQL Server 2005 Enterprise Edition and later versions only). A deferred transaction is effectively an active transaction whose rollback is blocked because of …

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

    Sep 11, 2008 · By not making transaction log backups often enough, the online transaction log will become full and will have to grow. The default growth size is 10%. The busier the …

  9. Proper way to use a transaction around multiple inserts or updates

    Apr 24, 2012 · begin transaction begin try INSERT INTO TableA (id) VALUES (1) INSERT INTO TableB (id) VALUES (1) UPDATE ...

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

    Feb 3, 2016 · SET TRANSACTION ISOLATION LEVEL READ COMMITTED - but the transaction will be physically created when first row is modified, not when this statement is executed. or. …

Refresh