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

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

    Apr 14, 2012 · Add a try/catch block, if the transaction succeeds it will commit the changes, if the transaction fails the transaction is rolled back:

  3. t sql - When to use Transactions in SQL Server - Stack Overflow

    Transaction must be Atomic (it is one unit of work and does not dependent on previous and following transactions), Consistent (data is either committed or roll back, no “in-between” case where …

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

  5. 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 ideas on how to use …

  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 &quot;transaction&quot;,...

  7. sql server - Error 'The transaction log for database is full due to ...

    Jun 19, 2024 · You need to take a full backup between step 1 and step 2: Set recovery model to Full Take a full backup Take a log backup Otherwise, the first log backup might seem to "work" but it …

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

    Oct 22, 2008 · 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 automatically …

  9. 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 also doesn't …

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