Tagged Questions
3
votes
3answers
385 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
1answer
432 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
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
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
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
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
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
2answers
36 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
0answers
74 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
2answers
210 views
With Liquibase, is there a difference between using a unique <createIndex> and using <column> with a unique constraint?
Liquibase has two ways to define a column as unique:
When creating the table, using <constraints> on the column:
<createTable tableName="my_table">
<column name="my_column">
...
0
votes
0answers
112 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
225 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
2answers
404 views
problem running liquibase with maven and postgres-db
I have a problem running maven's liquibase-plugin on a postgresql-db.
When trying to run liquibase:update from the command-line, I get the error message
[ERROR] Failed to execute goal ...
0
votes
1answer
208 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
2k views
Db migrate - Hibernate/JPA - hbm2ddl - diff tools
I use:
EJB3 / JPA (Hibernate)
MySQL 5
I have to set up a system to help database migrations. Tried to use LiquiBase but it seems not enough mature yet to be used with Hibernate.
What I would like ...