Do not create Databasechangelog and Databasechangeloglock tables?
I am using liquibase-core-3.4.2.jar to execute sql file in one of the schema from command line. We noticed that Liquibase is creating 2 tables to track changesets. Our script will be executed in...
View ArticleHow to do a multi line insert query.
How do I make a multiline value on an insert query?What I tried: <column name="ColumnExample" type="varchar2(500)" value=" doc:application/msword \n...
View ArticleRe : How to do a multi line insert query.
Its fixed with:<column name="CHAR_VALUE" type="varchar2(500)" ><![CDATA[ line1 line2 line3 ]]></column>Where every enter in the XML file in CDATA with a \n Might wanna add it to the...
View ArticleInclude the same xml file twice.
Hello,I'm trying to call the same xml twice using the include tag. I get the duplicate identifiers error message.I looked up the forums and I see that this was resolved -...
View ArticleSybase - createProcedure does not work
Hi all,We are using Liquibase 3.5.3 with Maven 3.3.0 and Eclipse 4.5.2. Everything works and we can successfully run a Liquibase build with maven to our Sybase databases.However, for whatever reason,...
View ArticleLiquibase diffChangeLog SQL Server
Hi,When i just run Liquibase 3.5.3 with commandliquibase.bat --defaultsFile=DB_DIFF.properties diffChangeLogThe File DB_DIFF.properties content:driver:...
View ArticleRe : Unable to replace logger, ServiceLocator.instance() returns null
I have deployed the liquibase-core karaf feature https://github.com/steinarb/liquibase-karaf-feature to maven central.The deployed feature has version 3.5.3 and will load liquibase 3.5.3 (and redirect...
View ArticleRe : Logging Changes
Last chance for feedback on the logging changes that have gone into the dbmanul-merge branch before they head to master for the 3.6 release.Nathan
View ArticleRe : Logging Changes
Hi Nathan,sorry for the long delay, I finally took some time to look at the recent logging changes. Here are some things that came to my mind:why rename the LogFactory?that will be a problem for custom...
View ArticleRe : Do not create Databasechangelog and Databasechangeloglock tables?
Hi prabharhar,not sure what you mean with "it is kind of utility sql". If you just want to fire sql to a database, liquibase might not be the right tool for you. liquibase is meant to manage database...
View ArticleRe : Unable to replace logger, ServiceLocator.instance() returns null
Hi Steinar Bang,can you please have a look at the upcoming changes to the Liquibase Logging for 3.6 and if it's still possible to run Liquibase in Karaf with them applied?see:...
View ArticleRe : Logging Changes
Thanks for the reply, always great to get feedback.Renaming LogFactoryThe change is, unfortunately, definitely a major change. I had been planning on making it with liquibase 4 since I really don't...
View ArticleH2 text column generation
Hi all,I just upgraded from 2.0.5 to 3.5.3. I've run into a problem I can't figure out. We use Postgres in production, and H2 in dev. Generating a fresh dev DB with a changelog like...
View ArticleRe : DBManul Merge Discussion
I pushed the dbmanul merge branch to master. I will continue to do testing as I bring in more pull requests and fixes to prepare for a 3.6 release.Let me know if you run into any problems.Nathan
View ArticlePossible to disable reorg table command on DATABASECHANGELOG and...
Hello,We are using Liquibase on DB2 for our database with column-organized tables. One thing with column-organized table is that you are not allowed to run "reorg table", it is taking care by the...
View ArticleCan liquibase point to a directory and sync/run sql files within?
For our project we currently commit all database changes as .sql files to a given svn directory. I want to set up liquibase so that when we need to do an alpha push, I run a single liquibase command...
View ArticleRe : Support for Hive (Hadoop) schema changes via Liquibase?
Hi,I've been trying to understand the codebase for sometime to see whether it is possible to make use of liquibase to handle schema changes for Impala/Hive. At first glance, come to know that CRUD...
View ArticleLiquibase and derby gives: Error closing derby cleanly
Hi,I'm trying to set up derby together with maven and and liquibase. I want to create an embedded derby database and a table and it works but then when it's finished i get a database exception that...
View ArticleHow to unlock / release files?
I'm trying to use Liquibase programmatically, but I'm running into an issue with file locks. It seems like Liquibase is keeping the changelog files open after it's done using them, and I can't figure...
View ArticlePerformance issue if a changeset contain a single insert statement with...
I am currently on liquibase version 3.5.3. I have a .sql file with a changeset that contains a single "insert into table" statement with multiple values. i have observed that insert statements with...
View Article