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 of the "same" sql query, eg. tsql vs. sql).

My problem appears when it's time to create the database schemas (production environment). As far as I can see I have two alternatives.

  1. hbm2dll = update
  2. pure sql (ddl) scripts.

The first alternative is widely discussed in the thread above. The second alternative is bad because that means I'm back to my first problem: "Don't want to create sql statements that are database vendor dependent". (This statement could be false if "all" (atlast the databases Hibernate support) are implementing the DDL (The subset of SQL used for defining and examining the structure of a database.) equal).

link|improve this question
feedback

3 Answers

up vote 3 down vote accepted

Do all changes in development/staging mode and transfer and execute scripts in production manually (or automatically, but don't let hibernate run them). The scripts may need some tunning since hbm2ddl update does not cover all cases.

In fact I never let hibernate run ddl against any database. I use hbm2ddl to generate text:

org.hibernate.tool.hbm2ddl.SchemaExport --config=hibernate.cfg.xml --text --format --delimiter=;

org.hibernate.tool.hbm2ddl.SchemaUpdate --config=hibernate.cfg.xml --text --format --delimiter=;
link|improve this answer
Beat me to the punch. Completely agreed. – Paul Sonier May 7 '09 at 17:35
feedback

I like Hibernate (a LOT), and I think it makes some incredibly good quality code, but I would no sooner turn it loose on a production database than I'd let a very well-mannered grizzly bear babysit. Everything can go great for a while, but the one incident where it goes bad is REALLY bad.

My suggestion would be in a test environment, have hibernate generate database schemas. Test those in a test environment. Then take those scripts to the production environment and run them. Note the specificity there; even if the tests succeed fantastically, I STILL wouldn't just allow Hibernate to go wild on the production server. Take the output of Hibernate schemagen, test it, and once it's validated, then deploy that to the production server.

link|improve this answer
Not trying to be adversarial here, but did you read my question? – Schildmeijer May 7 '09 at 17:42
I did; is there a specific way in which my answer indicates a miscomprehension of your question? – Paul Sonier May 7 '09 at 17:58
The first sentence in your answer. – Schildmeijer May 7 '09 at 18:01
btw, I would like to share the "accepted answer" with yours. – Schildmeijer May 7 '09 at 18:03
Oho, I understand. Like I said, wasn't trying to be adversarial. I'll remove that first line. Thx on the sharing thought; sadly, not possible (AFAIK) on stackoverflow, but it's a nice thought. – Paul Sonier May 7 '09 at 18:05
show 2 more comments
feedback

Your Answer

 
or
required, but never shown