getting DB2i support working in 3.1
Hi,A month ago support for DB2i database got merged in to 3.1-SNAPSHOT. But before the 3.1.0 release this was reverted in favour of moving DB2i support in to a separate extension library. Unfortunately...
View ArticleRe : Oracle DBMS Outline commands
Hi Nathan,Sorry for the late reply..please see the liquibase error message below:SEVERE 1/21/14 6:18 PM:liquibase: Error thrown as a SAXException: Error parsing line 21 column 481 of...
View ArticleSupport Oracle 12c feature identity (autoincrement)
Hi,will there be support for Oracle's new feature in defining an autoincrement column?int generated as identity
View ArticleIs it possible to extract table metadata with liquibase?
Hi everybody, I'm currently working on some database migration from MySQL to Oracle vendors. I have to migrate ddl, data and also some metadata about tables. It is especially important to migrate...
View Article2.0.x Vs 3.1.1 number of changesets
Greetings,I exported our Oracle database with liquibase version 2.0.x. DatabaseChangeLog has 4000 changesets.If I made databaseChangeLog in version 3.1.1, number of changesets is 72000.With change log...
View ArticleUsing Maven in a multi module project
When I run mvn liquibase:update , the update works fine but it tries to run on all modules within my project.. Here is the tail end of my output. Wondering how to make it just run on the first project...
View ArticleMaven and multiple goals for test/prod live etc. encrypted passwords
In our environment we have a dev, test and prod databases. I'd like to know the recommend method for running maven/liquibase for each of them. ideally i'm picturing something likemvn...
View ArticleHow to identify changes inside changeset when manipulating XML?
HelloI am developing an interface web for generate liquibase changelog, and I need to identify a change inside a changeset (something like an id attribute) tag for edit purposes.For example:I read...
View ArticleRe : Using Maven in a multi module project
This isn't really a liquibase question, but a maven question. What you want to do though is specify the project. This StackOverflow Q&A covers...
View ArticleRe : Understanding validCheckSum
This means you can't use <validCheckSum> to mitigate problems when migrating from one Liquibase version to another. For example:I apply a changeSet to the DB using Liquibase v1.0, and it...
View ArticleRe : Using Maven in a multi module project
True, tis Maven question.The command you shared doesn't quite work cause it says mmhc can't be found in the reactor. For now we've made a pom file in our sql directory and just run it from there...
View Articleliquibase offline and databasechangelog table
I am trying out the new offline option for update2sql and it looks like the generated sql does not insert rows into the databasechangelog table. I can understand why liquibase might work that way but...
View ArticleRe : liquibase offline and databasechangelog table
Created an issue, CORE-1726, to descirbe how this feature could work.
View ArticleLiquibase Maven plugin with alternate goals
Hello; I wanted to make the forums aware of my liquibase-maven-plugin documented at http://ljnelson.github.io/liquibase-maven-plugin. It is at version 1.0.0-SNAPSHOT, but fully documented and...
View ArticleRe : Using Maven security?
I think the maven plugin does have the capability of reading username/password from the settings.xml. I guess that doesn't mean it will read encrypted passwords? I am willing to take a stab at this and...
View ArticleRe : Oracle DBMS Outline commands
You could also use an <sqlFile> tag and store the sql in a separate non-xml parsed file as well if you would prefer.Nathan
View ArticleRe : Support Oracle 12c feature identity (autoincrement)
I added https://liquibase.jira.com/browse/CORE-1731 to track the feature request. It shouldn't be difficult to add.Nathan
View ArticleRe : Is it possible to extract table metadata with liquibase?
Currently Liquibase should be pulling the comments from the mysql tables and columns into the DatabaseSnapshot object that gets created internally, but I don't believe it translates that into change...
View ArticleRe : 2.0.x Vs 3.1.1 number of changesets
It shouldn't be taking that much longer and it shouldn't be outputing a changeSet per row. I created https://liquibase.jira.com/browse/CORE-1733 to track the bug.Nathan
View Article