Tagged Questions

56
votes
13answers
29k views

Hibernate: hbm2ddl.auto=update in production?

Is it okay to run Hibernate applications configured with hbm2ddl.auto=update to update the database schema in a production environment?
54
votes
4answers
84k views

Hibernate question hbm2ddl.auto possible values and what they do

I really want to know more about the update, export and the values that could be given to hbm2ddl.auto. I need to know when to use the update and when not? And what is the alternative? These are ...
5
votes
2answers
2k views

How to turn off hbm2ddl?

I couldn't find a reference on how to switch hbm2ddl off.
4
votes
4answers
3k views

Schema export with hibernate annotations

I'm using hibernate annotations and i want to export my database schema. Similar to the schemaexporttask with hbm xml files.
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 ...
3
votes
4answers
713 views

Update database schema with hibernate

<property name="hibernate.hbm2ddl.auto">update</property> i can create my database schema, it automatically add properties, constraint, key etc... But what about UPDATE the database ...
2
votes
1answer
2k views

Hibernate: hibernate.hbm2ddl.auto=update show generated sql

I wish to pass to Hibernate's SessionFactory hibernate.hbm2ddl.auto=update and see in log file generated sql statements. Is it possible w/o java coding (know how to achieve the result with ...
2
votes
1answer
732 views

Hibernate, MySQL Views and hibernate.hbm2ddl.auto = validate

I can use MySQL views in Hibernate by treating them like tables - ie. the entity is no different than one created for a table. However my application won't deploy when Hibernate is set to validate the ...
1
vote
1answer
78 views

Can I map a table and a view of the same table in Hibernate without breaking my automated tests?

Say I have a table like so: CREATE TABLE big_table (UUID varchar(32) not null, ... ); I have a query on the table that I can't express as an HQL or Criteria query. I am trying to set up the query ...
1
vote
1answer
181 views

Problems with Hibernates hbm2ddl.auto=validate and MySQL text types

I've tried to enable hbm2ddl.auto=validate on a project I've inherited. I now get a lot of wrong column type exceptions for String properties which are mapped either with text or mediumtext (MySQL ...
1
vote
1answer
294 views

How do I mimic Hibernate hbm2ddl “create” behaviour in Liquibase?

I've worked with liquibase 1.9.5 for a while now and got it to replace hibernate hbm2ddl strategy of creating tables and loading fixtures in it. Since it's a maven project and since I use hsqldb ...
1
vote
1answer
820 views

How to make hbm2ddl schemaExport to log schema to stdout?

A quote from persistence.xml: <persistence-unit name="test" transaction-type="RESOURCE_LOCAL"> <properties> <property name="hibernate.archive.autodetection" value="class" ...
1
vote
1answer
118 views

Is it possible to generate a default value for a certain database column using hbm2ddl

Env: JPA 1, Hibernate 3.3.x, MySQL 5.x We auto generate database schema using hbm2ddl export operation. Would it be possible to generate a default value for a certain @Entity member during SQL ...
1
vote
1answer
242 views

How to disable sql creation for JPA entity classes

We have some JPA entity classes which are currently under development and wouldn't want them as part of the testing cycle. We tried commenting out the relevant entity classes in ...
1
vote
1answer
2k views

Hibernate - hibernate.hbm2ddl.auto = validate

I am interested in how hibernate.hbm2ddl.auto=validate actually works and I am struggling to find comprehensive documentation. We've recently discovered production system was affected by ...
1
vote
1answer
665 views

Passing parameter to hbm2ddl

I have parametrized persistence.xml. I am trying to generate ddl schema using hbm2ddl. How can i pass parameters to this tool ? My persistence.xml looks like <property ...
1
vote
3answers
1k views

Is there a way to get Hibernate's hbm2ddl Ant task to exclude specific tables?

I use Hibernate to generate my database automatically for testing, and I have some tables in my schema that contain static data that takes a very long time to import. In the past, I've used the ...
0
votes
1answer
58 views

How to create database schema in hibernate first time and further update it in case of schema modification?

i want to create database schema in hibernate first time and further if there is any modification in schema like addition of new table or deletion of some column, want to update the existing schema ...
0
votes
2answers
52 views

Why is one entity ignored during schema creation with JPA2?

I have a small schema consisting of ~10 classes mapped by jpa2 with hibernate as provider. All of the classes are build in the same basic way (@Entity annotation for the class, id with @Id and ...
0
votes
1answer
156 views

Partial schema export in hibernate

EDIT: Hibernate version is 3.6 I am trying to do a partial schema export using hbm2dll SchemaExport. Therefore I access the current hibernate configuration, retrieve the PersistentClass the table ...
0
votes
1answer
135 views

How to skip the schema generation of a superclass table? Java/JPA/Hibernate/Annotations/Maven/hbm2ddl

Our application has a need to share an existing database table with another locally running application, and, so, I wish to refer to this table but skip generating the DDL for it. I also hoped to ...
0
votes
1answer
171 views

Hibernate HBM2DDL produces nullable field for primary foreign key?

I'm using hbm2ddl (from the hibernate3-maven-plugin 2.2) to produce a DDL based on my JPA annotated entities. Normally, this works fine but I recently introduced an entity that uses a composite key ...
0
votes
5answers
926 views

Mapping a boolean with hibernate

this is my first time ive asked a question on stackoverflow, but this website has been helpfull many times! im running into trouble with hibernate. I recently set my hbm2ddl to validate, and it has ...
0
votes
2answers
265 views

How to create two-column unique key constrain with HBM mapping?

I have a hibernate mapping: <properties name="lrt_bps_bpr_acs_uk" unique="true"> <many-to-one name="activitySummary" column="bps_acs_id" class="xyz.ActivitySummary" ...
0
votes
1answer
121 views

How to create tables with hibernate recomandations

I'm relatively new to hibernate technology, and want to create an application with that. I have read that is not recomanded to use "hibernate's creation tabels" option (hibernate.hbm2ddl.auto) for a ...
0
votes
2answers
448 views

How to keep hibernate3-maven-plugin HBM2DDL from printing to console

I used the hibernate3-maven-plugin to automatically create a SQL script I can use to create a database schema in a new database. I do this via the hbm2ddl tool. I thought that when I instructed it ...
0
votes
2answers
252 views

How can I turn off the majority of hbm2ddl's output in the console in Ant?

By default, hbm2ddl spits a ton of output to the console when executing the ant task. I'd like to turn this completely off and simply look at the schema file if something has gone wrong. Anyone know ...