Re : [LB 3.0.2] Servlet Listener not working
For 3.0 we removed the old 1.x style "liquibase.servlet.LiquibaseServletListener" class in favor of "liquibase.integration.servlet.LiquibaseServletListener" introduced in 2.0. You should just have to...
View ArticleRe : MySQL loadUpdateData using literal values for update
I'm working on a way to get snapshots out still. Currently you would have to build it yourself.I'm running final tests on 3.0.3 now, planning on releasing it today.Nathan
View ArticleRe : How to specify rollback in JSON changelog file?
Glad you got it. It is maybe a bit strange to be an array,but you can define multiple rollback blocks.Good to hear liquibase has been helpful. I've been able to switch over to full time liquibase in...
View ArticleRe : Avoiding connections
Currently not. To generate the correct SQL, liquibase needs to know the type and version of the database you are connecting to. You could avoid the lock table by creating an extension to modify the...
View ArticleRe : Formatted SQL with a comment.
It hasn't made it yet, but I created https://liquibase.jira.com/browse/CORE-1422 now to track the feature request.Nathan
View ArticleRe : Formatted sql with mySQL generates "mysql syntax error"
Those changelogs are working fine for me testing against 3.0.3. Try that when I get it released later today.Nathan
View ArticleRe : Create Index and order
modifySql just does a simple string search/replace, so you can do something like:<modifySql> <replace replace="COL1NAME" with "COL1NAME ASC"/> <replace replace="COL2NAME" with...
View ArticleHow can I get the return code from the liquibase updateDatabase ant task and...
I have created a question for this on stack overflow http://stackoverflow.com/questions/18515407/how-can-i-get-the-return-code-from-the-liquibase-updatedatabase-ant-task-and-the basically I want to be...
View ArticleRe : SQL Accept Parameter error
Actually, if you are trying to do oracle parameter replacement with &, that is functionality in SQL*Plus, not in JDBC that liquibase goes through.Liquibase has similar functionality with changelog...
View ArticleRe : Checksum changed without reason
There is sometimes a checksum change when upgrading liquibase because of changes in the algorithm, otherwise we do try to normalize as best as possible. If you are using changelog parameters the value...
View ArticleRe : Formatted sql with mySQL generates "mysql syntax error"
HiOK, I will test it. Is my commandline call correct?RegardsJoost
View ArticleRe : Formatted sql with mySQL generates "mysql syntax error"
Yeah, the command line looks right.Nathan
View ArticleRe : Formatted sql with mySQL generates "mysql syntax error"
Hi Nathan,still no luck with 3.0.3SEVERE 30-8-13 8:46:liquibase: Change Set c:/temp/liquibase/liquibase.sql::raw::includeAll failed. Error: Error executing SQL --liquibase formatted sql--changeset...
View ArticleRe : Liquibase 3.0.2 NullPointerException and logging request
Thanks, it's now working perfectly in 3.0.3.
View ArticleDiff ChangeLog Mode does not detect column type differences
Hi Team,I found, that from version 3.0.0, "diffChangeLog" output xml does not include column type differences. But the normal "diff" detects and writes these differences normally in plain text format...
View ArticlePossible bug in ForeignKeyComparator.isSameObject() introduced by 3.0.3 release.
There appears to be a bug in:liquibase-core/src/main/java/liquibase/diff/compare/core/ForeignKeyComparator.javaWhich was changed on 8/27/2013 for the 3.0.3 release.If you have a precondition like this:...
View ArticleRe : Reference documentation for column type conversion and support
I've been looking for the same thing. Closest thing I've found is a pointer to the source code:https://github.com/liquibase/liquibase/tree/master/liquibase-core/src/main/java/liquibase/datatype/coreAnd...
View Articleworking with multiple schemas on 3.x
Greetings,I've read that liquibase now supports multiple schema but haven't found it in documentation.I'm looking forward to add version control to an already existing postgresql database with multiple...
View Articlebest practice for dealing functions/stored procedures on an existing database
Greetings,I would like to hear your opinion on dealing with functions/stored procedures with Liquibase on an existing database.I have a postgresql database with a lot of functions for different...
View Articlehow to make command line tool build changeLog with a single changeSet?
Hello Everyone,Recently I was using Liquibase on databases i was developing from scratch.Now I've faced some legacy applications and want and version control to them.When I run liquibase command line...
View Article