Tagged Questions

6
votes
1answer
2k views

Hibernate using JPA (annotated Entities) and liquibase

liquibase is a perfect alternative to hibernate's hbm2ddl_auto property if you are using xml-mapping. But Im using JPA annotation (hibernate annotations). Is it possible to use liquibase then?
3
votes
1answer
126 views

Running liquibase in java code

I'm trying to execute in Java code analogue of Ant's "updateDatabase" task: Main.main( new String[]{"--defaultsFile=db/properties/db.test.properties --logLevel=debug update"} ); First, I could not ...
2
votes
1answer
576 views

is there any liquibase issue with hibernate hbm2ddl create?

i'm having a light problem with liquibase and hibernate.I expect hibernate to create the schema when the hbm2ddl is set to create and then have liquibase polulate the database with an sql script file. ...
2
votes
1answer
454 views

how to generate liquibase changelog with insert statement

i'm getting my hands around the liquibase library and i'ld like to mimic working with existing database. So from command line i manage to generate the changelog and i was wondering whether it's ...
1
vote
1answer
70 views

Maven turn off default goal execution

I have next question: I use liquibase maven plugin and by default when i making mvn clean package it dropAll tables and updates them. <code> <plugin> ...
1
vote
1answer
304 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
421 views

Liquibase drop constraint without knowing it's name

We use liquibase to keep track of our database changes.. First changeSet contains those lines: <column name="SHORT_ID" type="INTEGER"> <constraints unique="true" /> </column> ...
1
vote
1answer
294 views

Liquibase Rollback Custom SQL

I can't figure out how to rollback custom Sql within a changeset. Any thoughts? I'd like to do this: <changeSet author="Charlie White" id="15" runAlways="false" runOnChange="false" ...
1
vote
1answer
347 views

Liquibase: How to execute Servlet Listener before EntityManager construction

I manage to issue a Liquibase Update as described in Liquibase Servlet Listener. <listener> <listener-class>liquibase.servlet.LiquibaseServletListener</listener-class> ...
1
vote
4answers
319 views

Java SQL database independence

I have been looking for an alternative to Hibernate for various reasons. I came across Liquibase and i like the idea so i am willing to try it. Liquibase will cater for database creation/modification ...
0
votes
0answers
11 views

Liquibase - Set length for index when adding unique constraint

I m trying to use liquibase in order to generate my current database. The code in the sql file is like this ALTER TABLE RES ADD CONSTRAINT UK_RES_UNIQUENAME UNIQUE ( RES_UNIQUENAME(255) ) If i ...
0
votes
1answer
15 views

Liquibase changeset reporting to be deleting tables, however tables are clearly not being removed

I am running the following changeset on an instance who's schema is completely managed by liquibase: <changeSet author="aweigold" id="20120213-1"> <delete ...
0
votes
0answers
83 views

Liquibase drop constraint

I am truing to drop unique constraint using Liquibase <code> <changeSet id="it05-k44" author="igr"> <dropUniqueConstraint tableName="ext_event" ...
0
votes
1answer
99 views

Tests are not started after db creation by liquibase

I'm testing datasource layer using dbunit, junit, liquibase, hsqldb. I'm using in memory-state of hsqldb. Each time I start test, I create db structure using liquibase via command line: ...
0
votes
0answers
119 views

Difference between storing a DBUnit file in version control and using Liquibase for Database Version control?

What is the difference between storing a DBUnit database-loadable xml file in version control, and using Liquibase for database version control? I'm relatively familiar with DBUnit having used it in ...
0
votes
2answers
241 views

Creating a database changelog xml file from an existing database (including stored procs) using Liquibase

Is it possible to create an initial database changelog xml file from the existing state of the database? I believe I've generated the schema using generateChangeLog, but it doesn't seem to return the ...
0
votes
1answer
246 views

Error in liquibase table naming with hsqldb (in memory).Need a workaround

I'm using liquibase on a project and i just realize what makes my build fails.i've successfully use command line generateChangeLog against the same schema in mysql and included that file in my ...
0
votes
1answer
215 views

Liquibase, “Migration Failed: Java heap space” error when generateChangeLog with “data”

I am trying to create a baseline on one of my development database using liquibase, here's my environment - Database, -> Oralce 10g, with 500+ Tables with lots of configuration data, the oracle export ...
0
votes
1answer
395 views

Liquibase diffChangeLog against a Hibernate mapping definition

This question is related to "Hibernate using JPA (annotated Entities) and liquibase". I was actually wondering what to expect when doing a Liquibase diff against a Hibernate mapping definition. What ...
0
votes
1answer
583 views

Liquibase diff generates changeset using wrong case on tablenames

I'm performing a diff on a remote mysql database using LiquiBase, and finding that the changeset that is generated uses the incorrect casing for table names (all lowercase). This subsequently causes ...