Tagged Questions
The hbm2ddl tag has no wiki summary.
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
896 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
1answer
280 views
Why does hbm2ddl.SchemaExport not run here?
Trying to play around with IInterceptor in NHibernate 2.1.2.4000 I've got the following bit of test code:
public class TestingNHibernateInterceptors
{
[Fact]
public void ...
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
127 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
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 ...
3
votes
3answers
384 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 ...
3
votes
1answer
4k views
NHibernate SchemaExport and Configure() catch-22
I want to use DDD in a new project and model my classes first, then generate the database schema based on the class library. My plan is to do this with the NHibernate hbm2ddl tool SchemaExport.
The ...
2
votes
2answers
10 views
Issues with using hbm2ddl in development environment
I am using hbm2ddl to autocreate the schema by including this line in configuration:
<prop key="hibernate.hbm2ddl.auto">create</prop>
I have a entity bean defined as:
@Entity
...
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
481 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
1answer
517 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 ...
2
votes
2answers
727 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
931 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
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 ...
2
votes
4answers
717 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
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
71 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
373 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
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
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
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
0answers
342 views
How can you use Fluent NHibernate AutoMapping and hbm2ddl for generating DDL statement with nullable MySql columns?
I have created a simple code example with nullable and non-nullable integers and datetime properties:
public class Person {
public virtual int Id { get; set; }
public virtual string Name { ...
1
vote
1answer
372 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
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
879 views
Simple setup for maven hbm2ddl
I am setting up maven to take annotated java classes and produce some DDL which varies depending on the database. Is there a better way to do this? It seems like I should be able to filter the input ...
1
vote
0answers
229 views
Stop Maven's hibernate3-maven-plugin from logging to console?
I can control hibernate logging from within my application just fine, but during a system build, the hibernate3-maven-plugin runs hbm2ddl and this is spewing tons of useless INFO log messages to the ...
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
How to get hibernate3-maven-plugin hbm2ddl to find JDBC driver?
I have a Java project I am building with Maven. I am now trying to get the hibernate3-maven-plugin to run the hbm2ddl tool to generate a schema.sql file I can use to create the database schema from ...
1
vote
2answers
560 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
664 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
546 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
740 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
648 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
...