|
- database - What is a distributed transaction? - Stack Overflow
A distributed transaction is a transaction on a distributed database (i e , one where the data is stored on a number of physically separate systems) It's noteworthy because there's a fair amount of complexity involved (especially in the communications) to assure that all the machines remain in agreement, so either the whole transaction succeeds, or else it appears that nothing happened at all
- How do I use transaction with oracle SQL? - Stack Overflow
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 seems tha
- sql - Transaction count after EXECUTE indicates a mismatching number of . . .
Exec USPStoredProcName I get the following error: Transaction count after EXECUTE indicates a mismatching number of BEGIN and COMMIT statements Previous count = 1, current count = 0 I have read the answers in other such questions and am unable to find where exactly the commit count is getting messed up
- Correct use of transactions in SQL Server - Stack Overflow
Add a try catch block, if the transaction succeeds it will commit the changes, if the transaction fails the transaction is rolled back:
- sql server - How to use SqlTransaction in C# - Stack Overflow
There is an Update query in progress, the Transaction is started at a higher level on the connection In order to ensure that all server data is in a valid state for the Update, I need to do a couple reads
- How to rollback a transaction in a stored procedure?
Looking at the SQL Server Books Online, Microsoft seems to have an (incorrect) method of handling nested transactions in a stored procedure: Nesting Transactions Explicit transactions can be
- Transaction marked as rollback only: How do I find the cause
Participating transaction failed - marking existing transaction as rollback-only So I just stepped through my code to see where this line is generated and found that there is a catch block which did not throw anything
- 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
|
|
|