Liquibase is stuck on 'Reading from [dbo].[DATABASECHANGELOG]'
Does anybody have any idea why my Liquibase deployment hangs on 'Reading from [dbo].[DATABASECHANGELOG]' and just sits there infinitely? I even dropped and recreated DATABASECHANGELOG and...
View ArticleManage multibranch database versioning.
Hi, Liquibase works as a charm when our delivery pipeline is straightforward, and we work with a short cycle development. But it is not always the case. Firstly let's imagine that we should have...
View ArticleRe : Manage multibranch database versioning.
I would recommend that you call Datical right away.Steve DoniePrincipal Software EngineerDatical, Inc. http://www.datical.com/
View ArticleRe : Manage multibranch database versioning.
As your deployment complexity increases, Datical is a great option. From a pure-Liquibase standpoint, it doesn't really know or understand "versions", it just tracks individual changeSets and relies on...
View ArticleLiquibase + MySQL + Foreign Keys to different database
MySQL has a lovely feature with foreign keys. In particular one can have a foreign key reference a table in a DIFFERENT database. Apparently liquibase PUKES on this. consider the following simple...
View ArticleRe : Liquibase + MySQL + Foreign Keys to different database
Liquibase is really designed to only work with a single schema at a time. If you are working with complex multi-schema databases (or, as MySQL calls them, multiple databases) then you should probably...
View ArticleRe : Liquibase + MySQL + Foreign Keys to different database
I do tend to see generateChangeLog as a way to bootstrap using liquibase, but not the primary workflow and so there does tend to be more edge-case issues like handling cross-database foreign keys in...
View ArticleRe : Liquibase + MySQL + Foreign Keys to different database
Well Nathan...YOU DA' MAN!I suspect you didn't exactly mean the --schemas option - I couldn't find such an option. However, there is the --defaultSchemaName option which DOES solve the problem.I'm...
View ArticleCommunications link failure The last packet sent successfully to the server...
This is a weird error that I am seeing while running a liquibase script. It seems to happen intermittently but can't get rid of it.I realized that I was able to get around it by making sure that no...
View ArticleLiquibase vs SQLPLUS for SPOOL output.
Hello,I am currently migrate from oracle sqlplus standard usage to liquibase. But during this migration, my '.sql' file have some declaration off spool file and liquibase don't like them:I did a simple...
View Articleliquibase creates index then fails cause index exists
I am wrong a Long liquibase script. when it runs the changeSet to create an index, it does so, then it complains that the index exists, and failsThe changeset is simple: <changeSet author="ethomps2...
View ArticleRe : Liquibase + MySQL + Foreign Keys to different database
Alas, my zeal was underserved :(. Yes - it didn't crash - and yes it generated a valid XML file. Alas, the schema it generated the XML file was for the database referenced in the --defaultSchemaName...
View ArticleRe : Liquibase + MySQL + Foreign Keys to different database
I did find the --schemas option which you referenced in your original response. There is such an option. However, its usage is only valid on a diff - not a generateJim
View Articlecvc-complex-type.2.3: Element 'createTable' cannot have character [children]
Hi, I am trying to get started with liquibase and generated a change log from an existing database and tried to apply this changelog into an empty schema. but it fails with this error.Not sure where to...
View ArticleRe : cvc-complex-type.2.3: Element 'createTable' cannot have character...
Can you attach the changelog (/home/local/CAREZEN/rreddy/liquibase/careuat14.changelog.xml) you are working with?Steve DoniePrincipal Software EngineerDatical, Inc. http://www.datical.com/
View ArticleRe : cvc-complex-type.2.3: Element 'createTable' cannot have character...
Hi Steve, Attaching the changelog here...
View ArticleRe : cvc-complex-type.2.3: Element 'createTable' cannot have character...
I took a look and didn't see any obvious errors. I have seen this sort of error when the file is not saved with UTF-8 encoding, but the file I extracted did seem to have UTF-8 encoding. You might be...
View ArticleRe : cvc-complex-type.2.3: Element 'createTable' cannot have character...
Thanks Steve, I see more information when running with DEBUG option..Unexpected error running Liquibase: cvc-complex-type.2.3: Element 'createTable' cannot have character [children], because the type's...
View ArticleRe : cvc-complex-type.2.3: Element 'createTable' cannot have character...
Steve, I am stuck trying to figure out what could be wrong with this line, actually that line doesn't correspond to the exact line number within the file...Caused by: org.xml.sax.SAXParseException;...
View Article