About 1,660,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. python - Solana swap transation - Stack Overflow

    Jan 28, 2025 · Please help me to create swap transaction using solana and solders, there are not that many docs for Python and many legacy examples using solana 0.36 and solders 0.23 # 1) …

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

  4. c# - How to use transactions with dapper.net? - Stack Overflow

    May 8, 2019 · I would like to run multiple insert statements on multiple tables. I am using dapper.net. I don't see any way to handle transactions with dapper.net. Please share your …

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

  6. sql server - How to use SqlTransaction in C# - Stack Overflow

    I am using the following code to execute two commands at once. I used SqlTransaction to assure either all command get executed or rolled back. When I run my program without …

  7. Row was updated or deleted by another transaction (or unsaved …

    ERROR 2011-12-21 15:29:24,910 Could not synchronize database state with session [myScheduler-1] org.hibernate.StaleObjectStateException: Row was updated or deleted by ...

  8. The transaction log for database 'tempdb' is full due to 'ACTIVE ...

    Jul 25, 2017 · @GiulioCaccin Thank you for the suggestion, but I ran a query on the transaction logs and the log space used for tempdb is only at 31%. The other inquiry you referred me to …

  9. java - SQLException: Could not retrieve transation read-only status ...

    Sep 22, 2015 · I come to you because of a problem with MySQL: Since some days, without explanation I take this exception : java.io.IOException: java.sql.SQLException: Could not …

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