About 11,600,000 results
Open links in new tab
  1. Correct use of transactions in SQL Server - Stack Overflow

    Apr 14, 2012 · Shouldn't BEGIN TRANSACTION [Tran1] be placed inside TRY? Anyway - very simple and elegant piece of code.

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

  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. Proper way to use a transaction around multiple inserts or updates

    Apr 24, 2012 · What is the proper way to test for insert/update failures and rollback this transaction if there are any? I don't think what I have will work since my inserts/updates are 3 …

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

  8. c# - Transactions in .net - Stack Overflow

    The alternative is an ambient transaction; new in .NET 2.0, the TransactionScope object (System.Transactions.dll) allows use over a range of operations (suitable providers will …

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

  10. ERROR: cannot execute CREATE TABLE in a read-only transaction

    Jul 2, 2015 · I was having getting cannot execute CREATE TABLE in a read-only transaction, cannot execute DELETE TABLE in a read-only transaction and others. They all followed a …