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
886 views
Mapping Java byte[] to MySQL binary(64) in Hibernate
I'm having some trouble mapping a byte array to a MySQL database in Hibernate and was wondering if I'm missing something obvious. My class looks roughly like this:
public class Foo {
private ...
5
votes
2answers
2k views
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
2answers
122 views
java.sql.SQLException: Schema 'ROOT' does not exist
i am using hibernate with embeded derby, and i want hibernate to create the database and the tables, so i tried the following configuration, but i am getting the error:
java.sql.SQLException: Schema ...
3
votes
4answers
708 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 ...
3
votes
3answers
382 views
Problem adding @ManyToOne mapping on Non primary-key in SQL Server
I have a problem with changing my spring/hibernate application from MySql to SQL Server.
When Hibernate is updating the database by starting the server he want to creates(by hibernate.hbm2ddl.auto ...
2
votes
2answers
63 views
Shared sequence generator for IDs and DB scheme creation using hbm2ddl
all. I have an issue with DB scheme generation via hbm2ddl.
I want to use shared sequence generator for all private keys. So I defined it once in some entity.
@Entity
@SequenceGenerator(name = ...
2
votes
1answer
172 views
How do I add custom comments to Hibernate hbm2ddl output?
I was curious if it is possible to add a SQL header comment to the sql generated by the hbm2ddl output.
Specifically, it would be nice if I could add generated version strings to the Dialect object ...
2
votes
1answer
479 views
Multiple JPA persistence units pointing to same database?
Can we have more than one JPA persistence units pointing to same database, in different Java projects and deployed on the server at the same time? By same time I mean, not deployed at the same second ...
2
votes
2answers
723 views
How I can quote tables using hibernate3-maven-plugin hbm2ddl?
I have a project I'm building with maven and I need to generate a schema using the hbm2ddl tool from hibernate3-maven-plugin.
I need to create database with a table called Order like the SQL keyword ...
2
votes
1answer
926 views
Hibernate is not auto creating sequencies to database when using auto creating of tables
I want to create my database tables automatically with Hibernate and Postgresql, but I get errors about sequences. Is it possible to auto create sequences too with Hibernate, or do I have generate ...
2
votes
1answer
420 views
Can I create both MyISAM and InnoDB tables in the same database using Hibenrate hbm2ddl
I need both MyISAM tables and InnoDB tables in my database, I am using hbm2ddl to create them. Can I create both MyISAM and InnoDB tables in the same database using Hibenrate hbm2ddl?
It seems that ...
2
votes
1answer
2k views
Best approach for Java/Maven/JPA/Hibernate build with multiple database vendor support?
I have an enterprise application that uses a single database, but the application needs to support mysql, oracle, and sql*server as installation options. To try to remain portable we are using JPA ...
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
731 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 ...
2
votes
4answers
714 views
manual initialization of required Hibernate database tables
I'm getting started in Hibernate and so far it's not too hard. But I am confused about the hbm2ddl.auto property. Is there a way to manually execute whatever this does to initialize the database ...
2
votes
0answers
1k views
How to find a JNDI resource inside the hibernatetool Ant task
I want to generate my database schema with Ant. I am using hbm2ddl task.
I am using Hibernate with JNDI. My hibernate.cfg.xml looks like:
<!DOCTYPE hibernate-configuration PUBLIC
...
1
vote
1answer
77 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
68 views
How can I instruct hbm2ddl to generate sql for MyISAM engine
When I use hbm2ddl commands to auto generate SQL from JPA2 based annotations it automatically creates the table for ENGINE=InnoDB
e.g.
create table foo (id integer not null, bar integer) ...
1
vote
1answer
100 views
Issue with sequence why two entity are sharing the same sequence when generating schema with hbm2ddl ?
I am using hbm2ddl in my hibernate based application to generate the db schema. The value of hibernate.hbm2ddl.auto property is create-drop.
I am using @Entity annotations for my POJO classes.
...
1
vote
1answer
366 views
Schema is not dropped on hbmddl.auto = create.drop
I am using hbmddl.auto set to create in the hibernate configuration file and using it to connect to the derby database in network mode (not embedded, don't know if that is relevant).
Here is my ...
1
vote
1answer
180 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
2k views
Schema generation with Maven Hibernate3 plugin
I'm trying to setup a simple hibernate + maven project. I'm following steps as mentioned in Chapter 2 of Java presistence with hibernate (only diff is I'm maven using instead of Ant). However, while ...
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
1answer
814 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
239 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
2answers
558 views
hibernate3-maven-plugin: entiries in different maven projects, hbm2ddl fails
I'm trying to put an entity in a different maven project. In the current project I have:
@Entity
public class User {
...
private FacebookUser facebookUser;
...
public FacebookUser getFacebookUser() ...
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
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 ...
1
vote
1answer
662 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
1answer
493 views
Is it possible to create indices on join table using Hibernate annotations and hbm2ddl?
I have a two entities in many-to-many association. Hibernate creates a join table for this association if hbm2ddl is activated. However, since I do not have an entity for this table, I can not apply ...
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 ...
1
vote
1answer
613 views
In-MemoryDB: create schema in 'setUp()' of Unit Testing: Netbeans (6.5.1) Hibernate (3) Junit(3), HSQL (1.8)
What are the steps needed to setup an in-memory DB, build the schema automatically with Hibernate's 'hbm2ddl' tool within a Junit (3) 'setUp()' using Netbeans 6.5.1 ? I'm not using Hibernate ...
1
vote
1answer
543 views
hbm2ddl on a column based on GenericEnumUserType
The following JPA column definition generates an "integer" data type by default on all databases (e.g. h2, mysql, postgres)
@Column(name = "type", nullable = false)
@Type(type = ...
1
vote
1answer
738 views
Clone a Table's definition with Hibernate (hbm2ddl)
In my hibernate application there is annotation driven object: AuditEvent. Its very simple and has no foreign key relationships. I archive old entries in this table by moving them to another table ...
1
vote
1answer
2k views
Using hibernate hbm2ddl.auto=update : How can I alter column not to require value anymore?
I had a property that used to be not-null="true". Values aren't necessary for that field anymore so I changed it to not-null="false" but the table does not get updated in the database. Adding new ...
1
vote
0answers
647 views
Hibernate Validator: EmbeddedId constraint ignored by hbm2ddl
Fairly specific question here, but it's been bugging me for a day now:
I'm using Hibernate Core, Annotations & Validator on PostgreSQL 8.3.
I have the following classes setup:
@Entity
...
0
votes
0answers
65 views
org.hibernate.tool.hbm2ddl.SchemaUpdate not working in hibernate 3.6: table not updating
I have a problem with Hibernate 3.6 schema update. I'm using Jboss 6 and I can make the hibernate.hbm2ddl.auto property work. In other words the schema won't get updated. I'm using EJB2 in addition. ...
0
votes
1answer
53 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
1answer
42 views
Database not getting dropped with hibernate3-maven-plugin
I'm using the hibernate3-maven-plugin to generate my schema before running tests, and it is successfully creating the schema, but is not successfully dropping it.
My plugin configuration:
...
0
votes
2answers
171 views
org.hibernate.MappingException: Unable to find column with logical name
hi my tables are as follows:
1- medical_company:
medical_company_id foreign key on account_entity table account_entity_id column (not a pk)
column1
column2
column3
2- account_entity:
...
0
votes
2answers
50 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
62 views
What level of hibernate.hbm2ddl.auto to use in development mode
my case is as follows:
I make changes in already existing tables.
I add new tables.
In the import script for hibernate (import.sql) sometimes i make changes in old queries and sometimes i add new ...
0
votes
0answers
120 views
Hibernate 4.0 hibernatetool taskdef error
I'm using hibernate 4.0.0.CR4 and was trying the "Message" example from Java Persistence with Hibernate. I was able to compile and run the applicaiton using the ant build, but when i try exporting ...
0
votes
1answer
155 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
0answers
117 views
Hibernate: HBM2DDL schema generation - Many-to-Many join table primary key issue
So I have a List that is a unidirectional many-to-many relationship. Here's the code:
@ManyToMany
@OrderColumn(name="order_num")
@JoinTable(name="TaskgroupToTask",
...