Tagged Questions
Liquibase is an open source, database-independent library for tracking, managing and applying database changes. It is built on a simple premise: All database changes are stored in a human readable yet trackable form and checked into source control.
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?
4
votes
3answers
291 views
DB Migration tool Liquibase or Flyway?
I want to configure DB migration tool with my j2ee web application. The application is continuously building up by hudson server. I am using both ant and maven with it. So I need compatibility with ...
3
votes
2answers
317 views
Liquibase: Change a INT autoincrement column to BIGINT using modifyDataType refactoring with H2 database
I have a primary key column which is an INT column which I would like to change to a BIGINT. Our test and production environment uses MySQL, but for unit tests we use the embedded H2 database.
I have ...
3
votes
1answer
98 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 ...
3
votes
2answers
200 views
using liquibase on existing schema
I've read about how you can generate changelog.xml from an existing schema. That's fine, but I have existing systems that I don't want to touch, except to bring in new changes. I also have completely ...
3
votes
3answers
268 views
Any tools to export the whole Oracle DB as SQL scripts
Here is my problem, I wants to create a baseline on our development Dateabase (Oracle 10g), and check into our svn for version control, and after this we will use liquibase to help us manage the ...
3
votes
3answers
383 views
Database Diff Tool
As a Java Developper using JPA/Hibernate, I am looking for a will help diff a database that has been generated by Hibernate with a production database.
I've already looked at LiquiBase's abilities ...
2
votes
3answers
231 views
Finding jdbc driver class problem with liquibase, ant
Here is an example of my ant xml file:
<!--A reference to the classpath that contains the database driver, liquibase.jar, and the changelog.xml file-->
<path id="liquibase.classpath.id">
...
2
votes
0answers
109 views
Password encryption with liquibase maven plugin
Currently i am using liquibase maven plugin for database changes and my database credentials are in plain text format in .m2/settings.xml.
By using mavens password encryption, i want to encrypt ...
2
votes
1answer
175 views
build an ERD from liquibase changelogs
Is it possible to build an ERD from a liquibase changelog and view the changes over time in a GUI?
I am looking for a way to visualize (and discuss) the changes made to a database or database schema ...
2
votes
1answer
415 views
Error using Liquibase on SQL Server
I'm experimenting with Liquibase, trying to get it to copy one database to another. Unfortunately, I keep getting this error:
Implicit conversion from data type varchar to varbinary is not ...
2
votes
1answer
186 views
Grails Liquibase plugin and Taggable plugin
Perhaps this is a shot in the dark but I am attempting to use the Grails Liquibase plugin and it appears as though there is a compatibility issue with the Taggable plugin. The Taggable plugin works by ...
2
votes
1answer
545 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
430 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 ...
2
votes
2answers
321 views
Maven 2, Liquibase and dbDoc
I'd like to generate liquibase's dbdoc as part of my maven site build, but I cannot figure out how to do this. My thoughts were to add maven-antrun-plugin to the reporting section of the pom, but I ...
2
votes
1answer
678 views
Liquibase with SVN - PHP/MySQL projects in Eclipse
Today I found LiquiBase project and I think it is very interesting. I would like to use it but I am looking for best way to do it.
We are working with PHP projects and SVN (a few developers) with one ...
2
votes
3answers
861 views
Couple of questions from a liquibase noob
Im evaluating liquibase for a project starting today.
Has anybody used it to create procedures, functions, basically all of the plsql stuff?
If not, is it possible to write embedded sql code in the ...
2
votes
2answers
3k views
How to work with liquibase, a concrete example
Following the quickstart on liquibase i've created a changeset (very dumb :) )
Code:
<?xml version="1.0" encoding="UTF-8"?>
<databaseChangeLog
...
2
votes
1answer
1k views
how to insert html tag inside sql in Liquibase migration?
I need to update my data that have html tag inside so wrote this on liquibase
<sql> update table_something set table_content = " something <br/> in the next line " </sql>
it ...
1
vote
1answer
16 views
Does liquibase give access to java.sql.Connection for custom tasks
Is there a way of having liquibase call a custom Java class/plugin and giving that class access to the underlying connection to make data changes. I had a look but it only
So of our update steps ...
1
vote
1answer
57 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
0answers
65 views
Liquibase 2.0 slower than 1.9?
I've just upgraded to Liquibase 2.0.2 using the provided jar file, and I've found that it runs slower than its predecessor. If no updates are necessary, it still takes about 15 seconds to run, ...
1
vote
1answer
75 views
liquibase defaultValue vs defaultValueNumeric
Can anyone tell me the difference between specifying a defaultValue="0" vs a defaultValueNumeric="0" in a changeset? It's for a bigint column.
http://www.liquibase.org/manual/add_default_value ...
1
vote
1answer
185 views
How to run liquibase on linux system
hi
i am working liquibase tool on linux, please anyone give the idea of how to run datbasechangelog.xml file on linux prompt in step by step. and please give the cleary idea of databasechangelog
...
1
vote
1answer
71 views
What is with all the extra junk in the migration file?
I started testing out the grails database-migration plugin today. I did an initial sync with the domain and then created a new changelog based on running the diff command. This should have been as ...
1
vote
1answer
88 views
Liquibase Move Column Database Refactoring
Is there a standard way in Liquibase to migrate a column from one table to another existing table (including data)? What is want to do is this database refactoring: ...
1
vote
1answer
293 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
4answers
531 views
Cannot create column with type “TIMESTAMP WITHOUT TIME ZONE” in PostgreSQL
when i tried to create a column with the data type "TIMESTAMP WITHOUT TIME ZONE" in postgresql
it's always created in the database as "TIMESTAMP WITH TIME ZONE" , so is there's any workarounds or ...
1
vote
2answers
328 views
enum data type for liquibase
I'm currently working on a liquibase.xml file to create table table_a. One of my fields is <column name="state" type="ENUM('yes','no')">
I'm using postgresql as my DBMS. is there anything like ...
1
vote
1answer
388 views
liquibase using maven with two databases
i have the following structure to run one database from maven:
<plugin>
<groupId>org.liquibase</groupId>
...
1
vote
1answer
574 views
liquibase and hibernate annotations
this question is based on two threads that have been posted before.
Hibernate using JPA (annotated Entities) and liquibase
Liquibase diffChangeLog against a Hibernate mapping definition
my ...
1
vote
1answer
267 views
Liquibase - Rolling back a set of changesets
We do database releases which are made up of a group of change sets and our database change logs are organised in the following way
MasterChangeLog.xml
---> Release0001.XML
...
1
vote
2answers
550 views
Is Liquibase recommended for migrating production data from an old database schema to a new one?
I'm new to the world of data migration and looking into ways to migrate the data of customers using OurApp 1.0 to a new database with a schema compatible with OurApp 2.0. I've seen a more than a few ...
1
vote
3answers
486 views
Hibernate Second Level Cache EhCache library mismatch?
I'm using Hibernate 3.5.0, JBoss AS 6 and Liquibase 1.9.5.
I wanted to activate EhCache Hibernate second-level caching as follows:
The first thing I do, is adding a new dependency to the pom.xml:
...
1
vote
1answer
396 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
283 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
333 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
1answer
1k views
How to actually use liquibase in a maven project with svn
Last week i read about liquibase quick start and all the related tutorials but i feel like i don't get the whole drift about using it for consecutive change in the database and i have some questions ...
1
vote
4answers
312 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 ...
1
vote
2answers
318 views
Liquibase - uploading many Oracle triggers in one file
I have a number of Oracle triggers stored in a file which we upload to our DB using sqlplus. We want to use liquibase instead to manage this, but I don't really want to split out the triggers into ...
1
vote
4answers
543 views
How to integrate a Liquibase migration into my grails build?
I have a Liquibase migration that I manually run to load seed data from several CSV files into my database. I would like to run this migration each time I run grails run-app.
I think I have two ...
1
vote
2answers
1k views
how to delete index on mysql table?
I have a table generated by GORM (Grails Domain). It has foreign key / index that generated random characters like FKAC7AAF67162A158F. I need to remove that field that not needed anymore.
The ...
0
votes
1answer
27 views
Setting up Liquibase with SQL Server
I am utilising Liquibase (www.liquibase.org) into our MVC3 SQL Server 2008 project to manage database migration\changes. However I'm stumbling on the first hurdle....connecting to SQL Server instance.
...
0
votes
1answer
58 views
Adding a non-nullable column to existing table fails. Is the 'value' attribute being ignored?
Background: we have a Grails 1.3.7 app and are using Liquibase to manage our database migrations.
I am trying to add a new column to an existing table which is not empty.
My changeset looks like ...
0
votes
2answers
35 views
Migration scripts for Structure and Data
Is there a good or recommended tool that manages both DDLs and DMLs migrations?
Majority of my App configuration is stored in a database, I want to be able to freely develop and migrate this and not ...
0
votes
1answer
28 views
Liquibase changelog does not carry the column position or 'AFTER column_name'
To generate a database change log for a table alteration, I use Liquibase. But liquibase change logs doesn't carry specific positions of column name.
The following change set was generated through ...
0
votes
1answer
24 views
Log report in liquibase db migration tool
I have implemented liquibase db migration framework in my application. I am running the command line tool of this framework. It is working fine. Now I need a success or failure report from the logs ...
0
votes
2answers
40 views
Flyway and Liquibase call through webservices like Soap, Rest
I have integrated both liquibase & flyway with my application. Both are working fine. Both have their pros & cons. Now my concern is with webservices. Can Rest and Soap be used with these ...
0
votes
2answers
51 views
triggers in sql files with oracle 11g database don't work
I have a problem with Oracle 11g and Liquibase. I been looking for an good answer everywere. In my db-changelog.xml I point to a sql file where I have triggers. This does not work at all. I have ...
0
votes
1answer
117 views
comparing databases and genrating sql script using liquibase
I'm comparing two databases using liquibase integrated with ant. But the output it is generating is like generic format. It is not giving sql statements. Please can any one tell me how compare two ...