Table « Oracle « JPA Q&A





1. Alright to truncate database tables when also using Hibernate?    stackoverflow.com

Is it OK to truncate tables while at the same time using Hibernate to insert data? We parse a big XML file with many relationships into Hibernate POJO's and persist to the ...

2. JPA or Hibernates With Oracle Table Partitions?    stackoverflow.com

I need to use an Entity framework with my application, and I have used table - partitions in Oracle database. With simple JDBC, I am able to select data from a ...

3. Empty Oracle Domain Table    forum.hibernate.org

@SessionTarget Session session; @TransactionTarget Transaction transaction; String tSQL = "from Employee emp " + "where emp.eventDate >= to_date('" + strBegDate + "','yyyy-mm-dd') and " + " emp.eventDate <= ...

5. Hibernate and Oracle Temporary table    forum.hibernate.org

Hi, I want to work with an Oracle temporary table but I could not find information on how to do it... I want to create and manage it using my Java code - I dont want to count on other resources (like DBA) to create the table - I want my code to handle it. Can I do it using Hibernate? ...

6. Conflict between local tables and public synonyms in oracle    forum.hibernate.org

Hi all, I'm experiencing problems with schema valdation because a local table has the same name of a public synonyms, and some columns are validated against the public synonym. I know that exists an attribute "schema" but i cannot fix the name in the mapping because it can change between development, production, test and so on. Exists a way to define ...