dropAll fails when tables have child partitions - postgres
When running dropAll, and the database has a partitioned table, the dropAll process fails when attempting to drop the partitions. (Liquibase version 3.4.1, Postgres 9.4) master_table...
View ArticleRe : Making LiquiBase work with Netezza
I know I am bit late to this party, but has any progress been made for Netezza support?I looked out on GitHub, but I did not see any Netezza extensions. Thanks, Craig
View ArticleRe : Making LiquiBase work with Netezza
Looks like Russ (who started this thread) has posted just this one question and no replies. I'm guessing that he saw Nathan's reply and decided to do something different. Since it sounds like he (and...
View ArticleRe : Making LiquiBase work with Netezza
Thanks for the reply Steve.And yeah...I am thinking you are right.
View ArticleRe : Translator from MySQL to liquibase
Thank you for the answer. My bad with the ".xlm" typo. I was looking for something to convert individual sql scripts int xml change sets. If there isn't any similar tool around, I'll just make one with...
View ArticleRe : Silently stopping Liquibase at mid-update
Or is there no way to break your changelog into much smaller pieces? If you have to stop changesets from executing starting at some point, then you should have a way to create much smaller changelogs...
View ArticleRe : Silently stopping Liquibase at mid-update
I already have lots of small changesets. Don't understand exactly your suggestion here. I was speaking about breaking your big changelog into smaller changelogs (not changesets) and applying only...
View ArticleRe : Translator from MySQL to liquibase
Ah, I see what you are saying. In that case, I can see how a tool might be useful. We have written something like that recently using DaticalDB. We have a command line interface for DaticalDB that is...
View ArticleRe : Silently stopping Liquibase at mid-update
Your answers gave me an idea and since we are dynamically creating an include changelog file, for all the smaller changelogs, I simple iterate all the smaller changelog files until I reach the file...
View ArticleRe : [SOLVED] - Silently stopping Liquibase at mid-update
If I understand correctly: You got your changesets in tiny changelog files. You include all these mini changelogs into an include changelog file generated dynamically at process start, which will...
View ArticleRe : Configurable DATABASECHANGELOG table name ?
I have a DATABASE which is used by different UI applications. EX: TABLE1, TABLE2, TABLE3 - application1 TABLE4, TABLE5, TABLE6 - application2 TABLE7, TABLE8, TABLE9 - application3...
View ArticleRe : Configurable DATABASECHANGELOG table name ?
Well, create one changelog per application, and run liquibase for each application too, with - as said previously - the parameter -Dliquibase.databaseChangeLogTableName=anameforapp1 and -D...
View ArticlePostgres bpchar Default Value Throwing Error
I have generated a migration from a postgres source but when I try to import that xml migration into a new database I have errors with bpchar columns: [ERROR] Reason:...
View ArticleRe : Postgres bpchar Default Value Throwing Error
I forced the defaultValue to defaultValueNumeric but I am not sure if that is the proper solution.
View ArticleRe : [SOLVED] - Silently stopping Liquibase at mid-update
That's what I'm doing. I create two "include changelog file". One that runs all the "tiny changelog files" until the point where the next "tiny changelog files" merged into a "include changelog file"...
View ArticleLiquibase 3.4.1 - unsupported database Exasol issue
I try to get Liquibase working with unsupported database Exasol and get the following error while Liquibase tries to update table DATABASECHANGELOGLOCK: Unexpected error running Liquibase: Error...
View ArticleRe : Liquibase 3.4.1 - unsupported database Exasol issue
Are you writing a new Exasol database adapter? If so, then you will need to do the translation from Boolean to Integer and back. If your code is somewhere public like Github, etc., please share a...
View ArticleError finding parent directory when using valueClobFile attribute
I am currently using liquibase to carry out an update to an existing table in a sql database. I have included the xml script which i have written below. The problem occurs when trying to use the...
View ArticleRe : Error finding parent directory when using valueClobFile attribute
When you say "seems to fail", what do you mean? Are you getting an error message? If so, what is the message? Steve Donie Principal Software Engineer Datical, Inc. http://www.datical.com/
View ArticleError running yaml changelog after using generateChangeLog on database
Hello,I'm wondering if someone can provide me some direction on what I'm doing wrong in generating my yaml file. I currently have my changelogs in xml and it was decided we would convert everything to...
View Article