Tagged Questions

4
votes
3answers
3k views

How to creata database Schema using Hibernate

After reading Hibernate: hbm2ddl.auto=update in production? some questions arose. First of all, the reason for I'm using Hibernate is to be database vendor independent (no need to write 10 versions ...
2
votes
1answer
515 views

How to handle multiple database schema creation scripts with Maven?

I have an application in development that supports several databases including SQL*Server 2008, Oracle 10G, Oracle 11G, MYSQL 5, etc. Already within Maven I have done three things: 1) There is a ...
1
vote
1answer
371 views

HBM2DDL — Create a database view instead of a Table?

All, Is there some setting that I can tell hbm2ddl to run a view creation statement instead of create a table when generating the database schema? I'm creating my database schema using the ...
1
vote
2answers
249 views

How to reserve a set of primary key identifiers for preloading bootstrap data

We would like to reserve a set of primary key identifiers for all tables (e.g. 1-1000) so that we can bootstrap the system with pre-loaded system data. All our JPA entity classes have the following ...
0
votes
1answer
168 views

Does hbm2ddl.auto=update not honor different DB users, maybe?

We are encountering strange hibernate behavior with hbm2ddl.auto set to update. In our test setup, we have two database users, one containing the tables for our beta application, the other one is ...
0
votes
1answer
1k views

Db migrate - Hibernate/JPA - hbm2ddl - diff tools

I use: EJB3 / JPA (Hibernate) MySQL 5 I have to set up a system to help database migrations. Tried to use LiquiBase but it seems not enough mature yet to be used with Hibernate. What I would like ...