Global web icon
stackoverflow.com
https://stackoverflow.com/questions/19165291/how-t…
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.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/19302196/trans…
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.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/10153648/corre…
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:
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/35178808/how-d…
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...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/21930156/trans…
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.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/40540590/using…
c# - Using Transaction in ADO.net SQL - Stack Overflow
Additionally, you should read from tbl_supplier after the transaction has been committed by executing a SqlDataReader. I'm assuming you just wanted to know how many rows were affected after the transaction committed. Here is a simplified version of your code.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/56628/how-do-y…
How do you clear the SQL Server transaction log?
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 also a must when it comes to point in time recovery, so don’t just throw it away, but make sure you back it up beforehand.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/2127558/writin…
writing a transaction in t-sql and error handling - Stack Overflow
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 transaction? -- Descri...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/15012886/how-t…
How to rollback or commit a transaction in SQL Server
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 TRANSACTION and COMMIT but you'll need to go a step further and rollback if any errors occur.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/224689/transac…
c# - Transactions in .net - Stack Overflow
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 enlist in the ambient transaction).