Re : How to avoid liquibase evaluating columns inside an IF EXISTS BEGIN...
I forgot about the splitStatements; I had used it once or twice before but back when I first started putting this in place. Thanks!
View ArticleEMF Edapt & Liquidbase
Hi There, In Eclipse modeling world, there is EMF which let's you create Metamodels (so called ECore models). These are then used to create actual model instances which can be persisted in XML and also...
View ArticleRe : Adding comments to changesets no longer works reliably
There's something else going on here. In 3.0, when doing:JAXBElement elem = new JAXBElement(new QName("http://www.liquibase.org/xml/ns/dbchangelog","comment"), String.class, "NOTE: " + comment);Then...
View ArticleLiquid Base Editor/DB Change Log (XML format) editor
https://github.com/dzonekl/LiquidBaseEditor
View ArticleRe : Liquid Base Editor/DB Change Log (XML format) editor
Sorry to be the one to point this out, but the name of the project is Liquibase rather than Liquidbase. There is no "d" in the middle.Steve DoniePrincipal Software EngineerDatical, Inc....
View ArticleRe : inserting file into table from jar
I have found a way to do this by modifying the source code, and creating a new attribute 'valueBlobResource'. this will now read a resource file from the jar file that is running. Not sure if this the...
View ArticleRe : Liquid Base Editor/DB Change Log (XML format) editor
Hi Steve, Yes indeed, I noticed after commit. Anyway "git mv" does magic.Cheers Christophe
View ArticleExport data from db2 database
How do I export data from a db2 database and exclude specific tables not to be included in the export data set?
View ArticleRe : Export refactoring?
How do you go about excluding some table from the export..thanks
View ArticleignoredTables maven example
Is this patch incorporated in 3.2 version? If so How does it work in Maven "ignoredTables"
View ArticleRe : changeset with multiple context
Hi,do the context combinations work in sql-changesets? I could not get it working, tried different ways:-- changeset erik.petzold:1 context:A and Bthis one is executed, even when only context A is...
View ArticleRe : changeset with multiple context
Hi Erik,I used the liquibase version 3.2.0 and works.The syntax would be something like you have:<changeSet author="calfaro" id="UniqueId1" context="contextA and contextB"> <insert...
View ArticleRe : changeset with multiple context
Hi,in xml it works fine for me too (calling liquibase from command line).But I don't get it running in liquibase formatted sql files.
View ArticleRe : changeset with multiple context
Could you send an example?Maybe you need "convert" those sql files to XML format?
View ArticleGenerate SQL file without reference schema
Hi,there is a possibility for Liquibase to generate sql file using updateSql. Also now offline mode is available but you need to provide changelog as a changelog table. But why it is not possible to...
View ArticledropFirst is ignored when defined in property files
I'm using the last liquibase version: <dependency> <groupId>org.liquibase</groupId> <artifactId>liquibase-core</artifactId>...
View ArticlesqlFile property replacement in 3.2.0?
Yesterday I updated to 3.2.0 and a previously functioning sqlFile change that relies on Liquibase to do property replacement has failed. The error message that was returned displayed the property...
View ArticleloadUpdateData + runOnChange
I used loadUpdateData with runOnChange="true" to load static data tables. These rows are considered part of the app config and they do not change at runtime, so loadUpdateData seems like a natural...
View ArticleRe : sqlFile property replacement in 3.2.0?
Debugging in, I see that at SqlFileChange:143, my ChangeLogParameters are null, so there's nothing to do the property expansion with. Here's the structure of my changelogs update.xml A property...
View Article