Re : 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 ArticleRe : Error finding parent directory when using valueClobFile attribute
Hi Steve, Sorry I forgot to specify the error message. So by simply changing the path from valueClobFile="../customer-data/CustomerDesc.json" to valueClobFile="../../customer-data/CustomerDesc.json"...
View ArticleRe : Error finding parent directory when using valueClobFile attribute
Looking at the source, I don't see any reason why this would not resolve multiple 'parent' directory references. When you are executing this, what is the state of the system? Is it running from flat...
View ArticleWhy does databasechangelog not have a primary key?
I noticed that the table databasechangelog does not have a primary key. What is the reason behind that? Wouldn't it make sense to create it with a primary key on (id, author, filename) - or at least a...
View ArticleRe : Why does databasechangelog not have a primary key?
I think (Nathan can add to this if I am incorrect) that there just isn't much need for one. Nothing else references it, the table probably rarely grows beyond 100,000 rows (and most times far fewer...
View ArticleRe : Error running yaml changelog after using generateChangeLog on database
In case it helps anyone I figured out the issues with the above. When running the generateChangeLog it gave me a type of datetime(6) which I was then passing defaultValueComputed: CURRENT_TIMESTAMP...
View ArticleRe : Liquibase 3.4.1 - unsupported database Exasol issue
Hi Steve, thanks for the reply. I am just starting writing an Exasol database adapter but I am completly new to this topic so I have to see how far I get. Most likely I will raise a few more questions....
View ArticlePossible bug in loading data introduced in 3.4.1?
Hello, I have a problem with loading data from a file into a MySQL table in 3.4.1. I am trying to update from 3.0.8. It works fine in all other previous versions. The same problem occurs running...
View ArticleRe : Liquibase 3.4.1 - unsupported database Exasol issue
No problem - ask away! Nathan, Liquibase founder, is also on here and answers the tough questions. If you put the source on Github then it will be easy to work together. Steve Donie Principal Software...
View ArticleRe : Possible bug in loading data introduced in 3.4.1?
It sounds reproducible - I have created https://liquibase.jira.com/browse/CORE-2510 to track it. Steve Donie Principal Software Engineer Datical, Inc. http://www.datical.com/
View ArticleLiquiBase warning and java.sql.SqlSyntaxErrorException
In my ubuntu, I successfully installed and developed JHipster Book Store application. Here, I preferred MySQL as database. Now, I am trying to connect to NuoDB (database) on JHipster. I had to face...
View Article