Re : Informix issues
Hi Nathan,Thank you for taking a look at these issues.Is there an ETA for when version 3.2.0 might come out?Thanks.
View ArticleRelease-Version of liquibase-maxdb?
Hi, it's been 5 months since the maxdb support was separated from the main module, but it's still an unreleased 1.0.0-SNAPSHOT version.Are there any plans to release it and to get it into the central...
View ArticleRe : Release-Version of liquibase-maxdb?
Thanks for reminding me. I am working on improving my test infrastructure and the MaxDB release has fallen by the wayside during that.I attached an updated snapshot against 3.1.1, are you able to test...
View ArticleRe : Using Liquibase to migrate selective data.
Answered question on http://stackoverflow.com/questions/22882584/using-liquibase-to-migrate-dataNathan
View ArticleRe : Release-Version of liquibase-maxdb?
I haven't quite tested your version, but I've been experimenting around a bit, and MaxDB does not support "call current_schema". "SELECT CURRENT_SCHEMA FROM DUAL" should do the trick, like:...
View ArticleRe : Release-Version of liquibase-maxdb?
Seems not enough, though, I get:Caused by: liquibase.exception.LockException: liquibase.exception.UnexpectedLiquibaseException: liquibase.snapshot.InvalidExampleException: Found multiple...
View ArticleRe : Release-Version of liquibase-maxdb?
adding public boolean supportsSchemas() { return false; }to MaxDBDatabase seems to do the trick.
View ArticleRe : Release-Version of liquibase-maxdb?
I committed that change. Otherwise is it working for you?Nathan
View ArticleFluent interface pattern (setter returning 'this') conflicts with JSF
Hello!I am developing a GUI with JSF to generate DDL for multiple SGBDs.The problem is that using setter methods returning types, I have some conflicts with EL.Explaining by example:When using a simple...
View ArticleRe : Enhancing Main.java to help other programs call it.
I've done a pull request agains the master branch. Sorry it took so long, March was a really hectic month. Steve
View ArticleRe : Release-Version of liquibase-maxdb?
It's not necessary to overwrite getConnectionSchemaName() if supportsSchemas returns true? Nice to know and that part seems to work now. I've just fetched the latest change from github.Using that...
View ArticleRe : Release-Version of liquibase-maxdb?
OK, I'm stuck. Our primary instance works (with supportSequence() returning false), but I can't get rid of the DATABASECHANGELOGLOCK thing. I've tried to debug a bit into the liquibase coding, but I'm...
View Articlesetting databaseChangeLog/LockTableName via Maven Plugin
In our project we need to support more than one oracle database schema with liquibase. the idea is to generate only one sql file using liquibase which will be executed as sysdba in oracle.therefore we...
View ArticleIssues migrating from Liquibase 2.0 to 3.1
Hellow Friends, we are in the process of migrating from liquibase 2.0 to 3.1. our installer is giving attached exception when we try to upgrade it. any help in this regard is deeply appreciated. thanks!
View ArticleRe : Issues migrating from Liquibase 2.0 to 3.1
Your attachment doesn't seem to be here.
View ArticleMaking add/dropColumn and create/dropTable more defensive
Sometimes we have the problem that the database was changed outside of liquibase. In that case,the updates could not be applied, the changes or part of the change had already been applied.While it's...
View ArticleRe : int array type for HQSLDB
You could just use a <sql> block and write the add column statement inside.
View ArticleRe : Memory consumption for large files
I'm running into a very similar situation. One of the liquibase files is large (initializes a database to a certain release level). We run liquibase from the command line with 256 MB of heap and it...
View ArticleRe : int array type for HQSLDB
Hi there,Yes, that would be a solution. i could write the entire create table that way.thanks for the suggestion!Cheers,Stan.
View ArticleSlow query performance on Oracle using ALL_TABLES and ALL_TAB_COMMENTS
I'm experiencing slow Liquibase updates on Oracle with a change log containing 800+ change sets in it. On MySQL and PostgreSQL, these changes sets run in under ten minutes. However on Oracle it's...
View Article