Re : Liquibase 3.3 : insert SYSDATE into DATE field fails with 'ora-01858'
Hi Nathan, It's using liquibase tags: <insert tableName="DWP_VERSION"> <column name="VER_ID_VERSION_MAJOR" value="3"/> <column name="VER_ID_VERSION_MINOR"...
View ArticleRe : Calling sql scripts with some parameters
Ok Nathan, now I see.We're using Ant but not with the liquibase tasks. We're calling liquibase scripts with Ant giving parameters like url, username... I will do a refactor of this to use Liquibase Ant...
View ArticleSkip checksum verification
We have written an application using liquibase which is widely distributed to users outside of our control. So it is important that upgrades are solid and reliable. Liquibase has been terrific for us...
View ArticleRe : Liquibase 3.3 : insert SYSDATE into DATE field fails with 'ora-01858'
It should work if you use valueDate="SYSDATE" instead of value="SYSDATE". Liquibase doesn't inspect the table to determine the type, so value="" normally assumes it's a string and needs to be quoted...
View ArticleRe : Calling sql scripts with some parameters
If you don't want to refactor your ant tasks, you can pass in paramemer values though the command line or set them as system properties. Nathan
View ArticleRe : Return output messages from oracle chnageset execution to Liquibase
Hi Nathan, I checked the jira mentioned above, i believe you are planing to fix this in 3.4.0. If my understanding is correct, we will now be seeing the stdout in return for each sql statement getting...
View ArticleRe : Calling sql scripts with some parameters
Well I did the refactor, and it's working fine !Thanks for all. So now I use Ant to call directly liquibase, giving some <liquibase:changeLogParameters> that are directly used by the scripts...
View ArticleReplacement for missing liquibase classes moving from liquibase 2.0.3 to 3.3.0
I have a project using liquibase-core 2.0.3. When I updated to liquibase-core 3.3.0 I'm getting a lot of compiler class not found errors for the classes below. Any help on info on where/what they have...
View ArticleLooking for Feedback on Liquibase 4.0 Roadmap
As I am wrapping up 3.3.x changes and looking forward to what changes and features people are asking for and what I would like improved, I am thinking it is time to look at larger changes around a...
View ArticleRe : Skip checksum verification
Yes, there are times that it makes sense to disable the standard checksum behavior. You can disable the checks per changeSet using the <validCheckSum> tag with known good values, or with...
View ArticleRe : Multiple inserts in sqlFile do not fail as expected
Thanks for the test, that helped. What I found is that it looks like an issue with the JDBC driver. Because you have endDelimiter="\nGO" in your changelog but no GO in your file, Liquibase is not...
View ArticleRe : Return output messages from oracle chnageset execution to Liquibase
Yes, 1802 is currently set for 3.4 although I'm still looking at 3.4 vs. 4.0 work and timelines. Currently if you run with logLevel=DEBUG it will output all the SQL but it is mixed in with other log...
View ArticleRe : Calling sql scripts with some parameters
Good that worked. I don't think there is a way to combine your targets, but I haven't used the ant tasks for a while. They were redone a bit with 3.3.0, is that the version you are using? Nathan
View ArticleRe : Return output messages from oracle chnageset execution to Liquibase
Thanks for the information Nathan, I can see the detailed log with logging level to as DEBUG, however I was trying to capture the actual output of statements that are being executed. Some thing along...
View ArticleRe : Replacement for missing liquibase classes moving from liquibase 2.0.3 to...
Thanks Nathan for you answer on stackoverflow.com; http://stackoverflow.com/questions/27291619/replacement-for-missing-liquibase-classes-moving-from-liquibase-2-0-3-to-3-3-0 To give some context, I...
View ArticleOracle VARCHAR2 definition
Hi We are migrating from an existing Oracle database to Liquibase. We would like to support multiple databases, at least PostgreSQL. We've got couple of varchar definitions like this: VARCHAR2(255...
View ArticleRe : Replacement for missing liquibase classes moving from liquibase 2.0.3 to...
Just a quick update here.. So i changed public void init() throws Exception { final ServiceLocator sl = ServiceLocator.getInstance(); final Field classResolver =...
View ArticleRe : Looking for Feedback on Liquibase 4.0 Roadmap
While I understand the convenience of "Move non-core database support to extensions What are core databases? I would suggest mysql, pgsql, oracle, mssql, db2" I would consider pushing ALL DMBS support...
View ArticleRe : Looking for Feedback on Liquibase 4.0 Roadmap
Pushing everything to an extension is an option. My concern with that is that it adds one more step/dependency for people and therefore a chance for mistake. I run into issues with the few databases...
View ArticleRe : Skip checksum verification
Thank you. That's exactly what I need. I never found this feature in the documentation, so if you have commit rights there you might like to add something for others to find. Thanks for your help.
View Article