Top "Transactions" questions

A set of interrelated operations that must all succeed in order for any of them to succeed.

Is there an API to get bank transaction and bank balance?

I'm using CHASE bank. (Also Bank of America) and I want to get my bank transactions and my balance if …

transactions bank
Best way to work with transactions in MS SQL Server Management Studio

Let's say I have an SQL statement that's syntactically and semantically correct so it executes. In Management Studio (or any …

sql tsql transactions
Correct use of flush() in JPA/Hibernate

I was gathering information about the flush() method, but I'm not quite clear when to use it and how to …

java hibernate jpa transactions persistence
SQL Transaction Error: The current transaction cannot be committed and cannot support operations that write to the log file

I'm having a similar issue to The current transaction cannot be committed and cannot support operations that write to the …

sql-server sql-server-2005 transactions
Is there a way to list open transactions on SQL Server 2000 database?

Does anyone know of any way to list open transactions on SQL Server 2000 database? I am aware that I can …

sql sql-server transactions sql-server-2000
Spring @Transactional read-only propagation

I'm experimenting with using the command pattern to allow my web layer to work with Hibernate entities within the context …

spring transactions
What happens if you don't commit a transaction to a database (say, SQL Server)?

Suppose I have a query: begin tran -- some other sql code And then I forget to commit or roll …

sql-server transactions commit
Weblogic Transaction Timeout : how to set in admin console in WebLogic AS 8.1

I face the following exception: weblogic.transaction.internal.TimedOutException: Transaction timed out after 300 seconds this is set within the Stateless …

transactions weblogic
Laravel: Using try...catch with DB::transaction()

We all use DB::transaction() for multiple insert queries. In doing so, should a try...catch be placed inside it …

php laravel transactions
UnexpectedRollbackException: Transaction rolled back because it has been marked as rollback-only

I have this scenario: fetch (read and delete) a record from IncomingMessage table read record content insert something to some …

java spring hibernate transactions