log « Transaction « JPA Q&A





1. What are the effects of disabling the redo logs in Oracle on Hibernate transactions?    stackoverflow.com

If we disable the 'redo logs' of a tablespace in Oracle, will they impact Hibernate's transactions? These are the options present in the Oracle EM on a tablespace level: Enable logging Yes Generate ...

2. Logging JDBC/Hibernate/JPA transaction isolation levels    stackoverflow.com

I'm working on a Flex/BlazeDS/Spring/JPA/Hibernate web application hooked up to a Microsoft SQL Server database. It seems to be locking the tables too aggresively. From my research, it looks like using ...

3. How to log the transactionid (Hibernate 3.3.1, Oracle)?    stackoverflow.com

Is it possible to log the low-level transactionid (I'm debugging something and this would be helpful to have in the log)? The method to get that value is http://download.oracle.com/javase/6/docs/api/javax/transaction/xa/Xid.html#getGlobalTransactionId%28%29 but ...

4. hibernate commit: shows committed in log, but actually it does not    stackoverflow.com

Please have a look at this code. Persist works for a table called Candidate and it does not for another table called VerifyLink, whereas, hibernate shows that it is being persisted ...

6. Audit logging - unfinished transaction under msde db    forum.hibernate.org

Newbie Joined: Fri Dec 30, 2005 5:51 am Posts: 1 I'm using simplified version of audit logging interceptor presented in http://www.hibernate.org/318.html . Everything looks ok at first sight but closing audit session does not cause succesful commiting db transaction. In new session audit table is locked during accessign because of "unfinished" audit transaction. If audit table is locked then probably transaction ...

7. log says rollback executes, but data commits (JOTM/JTA)    forum.hibernate.org

View unanswered posts | View active topics Board index Hibernate & Java Persistence Hibernate Users All times are UTC - 5 hours [ DST ] log says rollback executes, but data commits (JOTM/JTA) Page 1 of 1 [ 2 posts ] Previous topic | Next topic Author Message mgeis Post ...

8. Unexecuted rollback appears in JBOSS Log after insert    forum.hibernate.org

Author Message ellacottb Post subject: Unexecuted rollback appears in JBOSS Log after insert Posted: Thu Jan 19, 2006 4:02 pm Newbie Joined: Thu Jan 19, 2006 3:29 pm Posts: 1 I'm using hibernate-3.0 with c3p0 cache, MySQL Server 5.0, and JBoss jboss-4.0.2. Using the following JTA code (in a Struts action class -- no EJBs) the client passes the ...

9. Database Transaction Log file    forum.hibernate.org

Hello, I have the following situation and need a hint how to go on.The situation is i'm using the Application server - WebSphere 6.1, Tivoli Performance Viewer in Websphere is enabled, Hibernate 3.0, Database - Oracle 9i, in a clustered environment. The problem i'm facing is over a period of 4 hours the Database Transaction Log file (NOT the log4J logger ...





10. Successful commit in the logs,but no changes in the databas    forum.hibernate.org

Newbie Joined: Mon Jan 07, 2008 9:41 am Posts: 2 Hi, I'm having problems with this simple piece of code (with transactions) that just inserts an entry in the USER table of a MySQL database with InnoDB as table type: Session session = null; Transaction transaction = null; try { // Get the session with the DB session = HibernateSessionFactory.getSessionFactory().getCurrentSession(); // ...