Re : Skip checksum verification
Good. I'll see what I can do to improve the docs. Nathan
View ArticleFILENAME column in databasechangelog table.
Hi, We have upgraded liquibase version from 3.1.1 to 3.2.0. We see there is a difference in how FILENAME column gets updated when we have includeAll tag in the xml between v3.1.1 and v3.2.0. Here's is...
View ArticleRe : Return output messages from oracle chnageset execution to Liquibase
Currently liquibase doesn't have support for logging the results of a select statement, only logging the queries themselves. I created https://liquibase.jira.com/browse/CORE-2165 to track the feature...
View ArticleRe : Return output messages from oracle chnageset execution to Liquibase
Hi Nathan, select statement was just for example, what would really be great is liquibase capturing stdout of each and every statement that is being executed. We can simply provide the log to...
View ArticleRe : Liquibase 3.3 : insert SYSDATE into DATE field fails with 'ora-01858'
Hisorry I forgot to give a feedback. That worked fine! Thanks.
View ArticleLiquibase 3.3 and Oracle INTEGER gives NUMBER(10)
Hi I just realized that liquibase (3.3.0 here) converts oracle (12.2) type INTEGER to NUMBER(10) instead of at least NUMBER(38). Oracle INTEGER is seen internaly as NUMBER(*,0) which certainly means...
View ArticleRe : Liquibase 3.3 and Oracle INTEGER gives NUMBER(10)
Sorry I didn't searched for previous messages : http://forum.liquibase.org/topic/oracle-and-integer-types => NUMBER(10)...
View ArticleRe : Multiple inserts in sqlFile do not fail as expected
You're right Nathan, our splitting wasn't working correctly. We originally had lowercase 'go' in our scripts and they were failing to run because Liquibase didn't match the regex - that's why we left...
View ArticleRe : Multiple inserts in sqlFile do not fail as expected
Good. Thanks for the update. Nathan
View ArticleRe : Liquibase 3.3 and Oracle INTEGER gives NUMBER(10)
Liquibase uses NUMBER(10) to try to keep INTEGER sort of consistent with other databases. How to best handle the mappings are going to get a good overhaul soon. You can use biginteger as a type that...
View ArticleRe : Liquibase 3.3 : insert SYSDATE into DATE field fails with 'ora-01858'
Good, thanks for the update. Nathan
View ArticleRe : Return output messages from oracle chnageset execution to Liquibase
I added a comment to CORE-2165 about logging the result of statements. Most statements managed by liquibase are DDL statements which tend to not have much for a printable result, but I'll look at what...
View ArticleRe : FILENAME column in databasechangelog table.
Yes, the filename is part of the unique changeset identifier. Can you post an example of the changeSets you are using? Also, was there a change in how you called liquibase from your 3.1 to 3.2 usage?...
View ArticleRe : Oracle VARCHAR2 definition
You can create your own extension of the VarcharType class and override the toDatabaseType() method to change the behavior of what is generated. Without adding a new class, the easiest approach may be...
View ArticleRe : Replacement for missing liquibase classes moving from liquibase 2.0.3 to...
Sorry for the delay getting back to you. I've been trying to get liquibase 3.3.1 out and it took longer than I was hoping. So it looks like your class is mainly an alternative to the normal Liquibase...
View ArticleRe : FILENAME column in databasechangelog table.
Hi Nathan, Here are the command we executed: java -jar /app/liquibase-3.2.0-bin/liquibase.jar --defaultsFile=./liquibase.properties --logLevel=info --changeLogFile=./db-changelog-R3.0.xml update...
View ArticleRe : Replacement for missing liquibase classes moving from liquibase 2.0.3 to...
Thanks for getting back to me Nathan. Just for some context, the original issue I was encountering was this; 1. I upgraded the application I'm using liquibase 2.0.3 in (note my application runs on...
View ArticleRe : Calling sql scripts with some parameters
Correct. Each task is an independent action so if you need to call updateDatabase with and without an output file that would be two separate task calls (i.e. two separate <updateDatabase>...
View ArticleRe : FILENAME column in databasechangelog table.
Nathan, do you need any other information on this? I am wondering if there is any particular reason for making this change in the code.
View ArticleProblems with ClassLoaderResourceAccessor in JBoss
Hi, I'm trying to programatically use liquibase to execute changecontrols over different jars. Each jar has the changecontrols files in the src/main/resources/ folder so the best way to access them is...
View Article