Rollback without tag in changeset
We are using the git flow model for our development and trying to integrate liquibase for managing the database versioning efficiently. The problem comes when a developer is working on a feature branch...
View ArticleUnexpected error running Liquibase: Column 'ID' cannot be null
I'm running docker mysql:5.6, and when I try to run liquibase against it i get this errorUnexpected error running Liquibase: Column 'ID' cannot be null
View Article"runalways" changesets seem to break rollback functionality
Liquibase Version: 3.5.3Database: PostgreSQL 9.3.15OS: Windows 10I am seeing strange behaviour when trying to utilise the "runalways" attribute on changesets. I am using liquibase in the following way...
View ArticleDoes liquibase support Invoking batch of sql from a single sql?
I am using liquibase to execute my sql scripts , my database is oracle. I would like to how to invoke multiple sqls .My changeset looks like this<changetset id = "abc" author = "system">...
View ArticleAdding Auto Increment to the Second Key of a Composite Key
Hello,I am trying to add an auto increment for the second key of my composite key but I am getting an error:<changeSet author="a1" id="1"> <createTable tableName="AgentDef"> <column...
View ArticleCannot find database driver: com.mysql.jdbc.Driver
Hi,I'm trying to running liquibase on my windows machine, trying to connect to MySQL DB installed locally.Here's is the command I run:liquibase.bat --driver=com.mysql.jdbc.Driver...
View ArticleLiquibase Maven / Spring / Hibernate build integration
Hi,First of all, thank you for the great work on liquibase!I am starting to integrate liquibase in order to industrialize database schema migrations on Jspresso based applications...
View ArticleRe : Does liquibase support Invoking batch of sql from a single sql?
You could call them using sqlfile tag inside changeset. They cant have sqlplus commands but for simple sql files it works very nicely.
View Articlecommand line > logFile option is not present
In the documentation page: http://www.liquibase.org/documentation/command_line.htmlThere aren't any reference to the option --logFile.But is supported by the command line
View ArticleUpdateSql mode offline include create / insert statements for the...
The out-of-line output of UpdateSql will include create / insert statements for the DatabaseChangeLog table if it is executed with the parameters:Liquibase --changeLogFile = / home / db /...
View Articleempty 'author' and 'id' attributes in change set
So it happened that I forgot to include both 'author' and 'id' attributes in a change set.{ "databaseChangeLog": [ { "changeSet": { "changes": [ { "sql": "set...
View ArticleCustomSqlChange for one type of db was compiled for another ones too
In my liquibase project I created changeset for Oracle db (dbms = "oracle" in xml file) generated by CustomSqlChange java class. It could be successfully applied directly to my db. But in my main...
View ArticleData Migration between environments
Hi, We have Oracle configuration tables and data is inserted into these config tables through the application. And then the configuration data gets tested thoroughly so we could move the same data into...
View Articleliquibase roadmap
Hello,what is the liquibase roadmap? There are plenty of pullrequests on github but the last commit I can see is 6 months old.Is there plan to merge some of the PR or work further on liquibase?Thanks
View ArticleWhy Does Liquibase forcefully reorg the table after altering
We are using Liquibase with Db2 LUW 10.5. We notice that after every alter table, Liquibase automatically reorgs a table. Reorging a table is not required in many cases. Is there a way to turn off...
View ArticleRe : Why Does Liquibase forcefully reorg the table after altering
Hi Ravi Krishna,I guess Liquibase is just going on the save side and reorg after each change that may put a table in a reorg pending state, as DB2s unique behavior with reorgs is quiet annoying.As for...
View ArticleRe : "runalways" changesets seem to break rollback functionality
The tag change updates the last executed changeset in your history table. That beeing said it's a bad idea to tag from outside (as it appears in your case, cause I can't see any tag change in your...
View ArticleAnnouncing DB-Manul, a Liquibase fork for continuing and enhancing Liquibase
Hello Nathan and all,First, let me say that I am incredibly grateful for the Liquibase software. It has helped me tremendously in my work as a developer-supporting DBA and enabled me to smoothen our...
View ArticleAnnouncing DB-Manul, a Liquibase fork for continuing and enhancing Liquibase
Hello Nathan and all,First, let me say that I am incredibly grateful for the Liquibase software. It has helped me tremendously in my work as a developer-supporting DBA and enabled me to smoothen our...
View ArticleRe : Announcing DB-Manul, a Liquibase fork for continuing and enhancing...
I understand your concerns and it looks like the project gets not enough love today, lets hope that the projects will merge after a while.
View Article