About 27,200,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 - Transaction count after EXECUTE indicates a mismatching number …

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

  3. Nested transactions in Sql Server - Stack Overflow

    Jul 27, 2013 · Imagine the following scenario: I am using SQL Server 2005. I have a transaction that is calling, among other SQL statements, a stored procedure that also has a transaction inside. The …

  4. spring - Could not open JPA EntityManager for transaction; nested ...

    I am quite new to Spring and Spring-Batch in particular. Still I somehow managed to install the Spring Batch-Admin. I added custom jobs and Hibernate/JPA for persistence. Everything is working as

  5. Sql server - log is full due to ACTIVE_TRANSACTION

    May 23, 2014 · Msg 9002, Level 17, State 4, Line 1 The transaction log for database 'MyDb' is full due to 'ACTIVE_TRANSACTION'. and it did not delete a thing. What does that message mean? How can I …

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

    Jul 2, 2015 · 48 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 cannot execute …

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

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

  9. c# - Using Transaction in ADO.net SQL - Stack Overflow

    Nov 11, 2016 · Additionally, you should read from tbl_supplier after the transaction has been committed by executing a SqlDataReader. I'm assuming you just wanted to know how many rows were affected …

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