Re : SQL Accept Parameter error
XML thinks things in the format &LETTERS; is an escape sequence. You'll have the escape the & like:accept SCHEMA_OWNER char prompt 'Enter the SCHEMA_OWNER alter session set...
View ArticleRe : how to specifty output format other than XML for liquibase command line...
Shoot. Apparently the json/yaml specific methods to actually write the changesets did not make it into 3.0. I created https://liquibase.jira.com/browse/CORE-1404 to track the fix.Nathan
View ArticleRe : How to specify rollback in JSON changelog file?
You should be able to include a rollback block after your changes block:{ "databaseChangeLog": [ { "changeSet": { "id": "included_json", "author":...
View ArticleRe : Foreign Key Constraint - NO CHECK
It's not built into the normal addForeignKey change tag, but you can use <modifySql> to add it or just use <sql> to define the constraint yourself.Nathan
View ArticleRe : afterMigrations changeSet attribute - to be run only when migrations...
Thanks Nathan.I've moved the story that depends on it up, so with a following wind it could get pulled reasonably soon.
View ArticleRe : afterMigrations changeSet attribute - to be run only when migrations...
Great, LMK if you have any questions with implementation.Nathan
View ArticleRe : Make service loading mechanism more configurable
Thanks. We found a workaround to some weird issue with this ServiceLocator mechanism by setting the liquibase.packages property explicitly which bypasses initial scan of the classpath to extract...
View ArticleRe : How to handle migrations with multiple RDBMS?
Hi Nathan,Thanks for your answer. Migrating native sequences appeared very complex to handle, especially in a cross-RDBMS migration scenario (looks like just branch merging with cherry-picking...), so...
View ArticleRe : Diff types questions
I see there are some problems around how we limit what gets snapshoted. I logged https://liquibase.jira.com/browse/CORE-1401 but I think it will be too large a fix to get into 3.0.3. It is high...
View ArticleRe : Message regarding an empty result set for databasechangeloglock (in...
I created https://liquibase.jira.com/browse/CORE-1414 to track the issue. I haven't gotten a chance to see what caused the regression yet.Nathan
View ArticleRe : Error on SYSTEM.DATABASECH ANGELOGLOCK while re-executing a migration
The log about Derby is fine, Liquibase checks for the driver since it supports Derby and just logs that it doesn't find it.I'm suspicious the problem is related to liquibase using the SYSTEM schema to...
View ArticleRe : Oracle Materialized views DROP
I created https://liquibase.jira.com/browse/CORE-1416 to track the feature. It will probably go into the oracle extension since it is fairly oracle specific at this point.Nathan
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 : Error migrating DB2 Procedure with advanced datatype definatione
You are right Nathan. It was a JDBC issue, we have fixed the error by moving to the latest version of JDBC driver. Thanks.
View ArticleRe : How to specify rollback in JSON changelog file?
nvoxland, thank you for your response. I have not thought value of rollback attribute should be an arrayDespite some gaps in the documentation, your application is very useful in my practice. It has...
View ArticleRe : Fighting Hackers: New liquibase.org apps/hosting
I ended up moving the site to github and I've liked how that works. It has to be all static so we lose some capabilities (such as comments) but I've been able to start auto-generating pages from the...
View ArticleAvoiding connections
Hi,I'm using Liquibase only to generate DDL to text file.Two things are annoying:1) The generated lock table stuff2) The fact that a connection is made when generation is done. I want a DDL based on...
View Article[LB 3.0.2] Servlet Listener not working
Hi,on lb2 i could run lb on server startup without any problem, setup like here: http://www.liquibase.org/documentation/servlet_listener.html.But with version 3 it's not working anymore:cannot Deploy...
View Article