約 8,850,000 件の結果
リンクを新しいタブで開く
  1. c# - How to use transactions with dapper.net? - Stack Overflow

    2019年5月8日 · 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 …

  2. writing a transaction in t-sql and error handling - Stack Overflow

    2017年4月6日 · Do u think there is a better way to write a transaction in t-sql? Is there a better approach that improves maintainability and performance of the application that uses this …

  3. How do I use transaction with oracle SQL? - Stack Overflow

    2016年2月3日 · 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 …

  4. Sql server - log is full due to ACTIVE_TRANSACTION

    2014年5月23日 · 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 …

  5. TSQL Try / Catch within Transaction or vice versa?

    2014年4月14日 · END CATCH --COMMIT TRANSACTION SCHEDULEDELETE --Run this if count correct. --ROLLBACK TRANSACTION SCHEDULEDELETE --Run this if there is any doubt …

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

  7. Nested transactions in Sql Server - Stack Overflow

    2013年7月27日 · 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 …

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

    2012年4月14日 · 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 …

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

  10. concurrency - What is a database transaction? - Stack Overflow

    2023年5月1日 · 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 …