About 51 results
Open links in new tab
  1. 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 …

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

  3. 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 transaction log is …

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

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

    BEGIN TRANSACTION / COMMIT "extends" this locking functionality to the work done by multiple statements, but it adds nothing to single statements. However, the database transaction log is …

  6. sql - How to find current transaction level? - Stack Overflow

    Jun 24, 2009 · How do you find current database's transaction level on SQL Server?

  7. Mongodb v4.0 Transaction, MongoError: Transaction numbers are only ...

    Jul 22, 2018 · MongoError: Transaction numbers are only allowed on a replica set member or mongos Cause: MongoDB transactions require your MongoDB instance to run in replica set mode.

  8. "This SqlTransaction has completed; it is no longer usable ...

    Jun 15, 2011 · { return transaction.Connection.Query<T>(command, new DynamicParameters(param), transaction, commandType: CommandType.StoredProcedure); } } } It looks as though the outer …

  9. sql server - SQL Transaction Error: The current transaction cannot be ...

    Aug 28, 2015 · I'm having a similar issue to The current transaction cannot be committed and cannot support operations that write to the log file, but I have a follow-up question. The answer there …

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