DB2 Update Statement in a change set generating error
Hello,I have an update statement in an XML changeset, I am getting parse error while deploying this code, have anyone encountered this type of error? I have several changesets in this xml changelog...
View ArticleRe : Error Migrating DB2 DDL when database is set to ORACLE support mode
Awesome. Thank you Nathan. Meanwhile we moved ahead with liquibase by reconfiguring the DB2 run on native mode. We will be live with liquibase in couple of weeks, once we are live, I will share, with...
View ArticleRe : Avoiding connections
I'd like to support this in my fork. I want to set the type and version manually without a connection - any suggestions where in the code to do this modification (if it's well contained) ?
View ArticleRe : Bug in SybaseDatabase
Hm, you recall which commit? Can't seem to get it to work with pulling the latest stuff.
View ArticleCommand line doesn't check dbchangelog table for entries?
I have liquibase running fine using Spring on my application in DEV environment. Now I wanted to run liquibase using command line so that i can have tables ready before i deploy the WAR file in...
View ArticleNullPointerException when generating changelog liquibase 3.0.3
Hi guys,Can you help me with the exception below that I'm getting with liquibase 3.0.3SEVERE 9/2/13 2:44 PM:liquibase: java.lang.NullPointerExceptionliquibase.exception.DatabaseException:...
View ArticleMS SQLServer - Database 'dbo' does not exist
I'm attempting to use liquibase with SQLServer, specifying --url=jdbc:sqlserver://boost:1433;selectMethod=cursor;DatabaseName=test0,and get Liquibase tag Failed:...
View ArticleRe : Reference documentation for column type conversion and support
My plan was to use the type converter classes to auto-gen the documentation, but I haven't quite made it there yet. It has tended to be in a bit of flux which is part of the reason it hasn't been well...
View ArticleRe : working with multiple schemas on 3.x
Documentation has always been a bit behind, fortunately I am working on Liquibase full time now and can get through a lot more.You can create a single changelog file that referenes multiple schemas....
View ArticleRe : best practice for dealing functions/stored procedures on an existing...
That is probably the best approach if you have a lot of stored procedures since Liquibase does not try to snapshot them with the generateChangeLog functionality.By add one one comment" you mean adding...
View ArticleRe : DB2 Update Statement in a change set generating error
It is an XML parsing issue sinc eyou are using < and > tags inside your <sql> tag. The easiest approach is to wrap the whole <sql> body in a CDATA block.Nathan
View ArticleRe : Command line doesn't check dbchangelog table for entries?
So it sounds like the problem is that the command line and spring have different paths for the changesets. Liquibase uses the path to the changelog file as part of the identifier. If you select * from...
View ArticleRe : GenerateChangelog fails due to bad sql
It looks like the query is coming from a select statement liquibase runs to determine if a column is auto-increment or not. It should be a simple "select X from Y where 0=1" query. I added logging of...
View ArticleRe : Bug in SybaseDatabase
It should have been in commit 899077b. Can you post the stacktrace you are seeing?Nathan
View ArticleRe : Possible bug in ForeignKeyComparator.isSameObject() introduced by 3.0.3...
Thanks for the report and the code change. I incorporated your change with a small fix and that seems to solve the problem for me. I'll make sure there are no other issues with 3.0.3 and release 3.0.4...
View ArticleRe : NullPointerException when generating changelog liquibase 3.0.3
It appears to be the same problem as http://forum.liquibase.org/topic/possible-bug-in-foreignkeycomparator-issameobject-introduced-by-3-0-3-release There should be a new 3.0.4 version that fixes it...
View ArticleRe : Avoiding connections
If you create a new class that implements liquibase.lockservice.LockService and returns a higher getPriority() method, Liquibase should use your class instead of the standard one. Just leave stub...
View ArticleRe : NullPointerException when generating changelog liquibase 3.0.3
Cool! For me, it was working with 3.0.2 with the same databaseHere's the diff between 3.0.2 and 3.0.3 for that classgit diff liquibase-parent-3.0.2 liquibase-parent-3.0.3...
View ArticleRe : Checksum changed without reason
Thank you Nathan for very fast answer. Sorry that I've missed this link to v3_upgrade note from http://blog.liquibase.org/2013/06/liquibase-3-0-0-released.html (I searched for "checksum" on the blog...
View Article