Re : Informix generateChangeLog issue
Unlikely to be a Liquibase bug. Try running with --logLevel=debug. If you can't figure out the problem with that, make sure your reply has details on what command you did as well as the debug output....
View ArticleRe : Informix generateChangeLog issue
Hi Steve, Here is the command - liquibase --changeLogFile=changelog.xml --url="jdbc:informix-sqli://172.28.137.182:9088/glsnextgen:informixserver=testgif" --username=abc --password=abc --logLevel=debug...
View ArticleRe : Informix generateChangeLog issue
Following up on my previous post, I've added the defaultSchema and my command now looks like this - liquibase --changeLogFile=changelog.xml...
View ArticleRe : FILENAME column in databasechangelog table.
Wondering if anyone can shed some light on this.
View ArticleHow to create a "super"-table which will be always created infront of any table?
Hello all, I am new to this community. So sorry if I am doing something wrong. I have the requirement, that all tables need some specific columns. this are: - id (primary key) - uuid (unique key for...
View ArticleRe : How to create a "super"-table which will be always created infront of...
This is a good place for these kinds of questions. There is also StackOverflow - tag your question 'liquibase'. There are many more people on StackOverflow, so you may get quicker response there rather...
View ArticleRe : How to create a "super"-table which will be always created infront of...
Hello Steve, many thanks for you quick response. I am using right now the XML format. Before going on for me it is not clear what you mean with: "If you intend to use the XML changelog format and...
View ArticleRe : generateChangeLog for multiple schemas in MySQL
No comments? Is the JDBC URL supposed to be all that's exported?
View ArticleRe : How to create a "super"-table which will be always created infront of...
On the first question - I am not recommending any particular approach to using Liquibase - I just know that there are many different ways it can be used. One of the most common things we have seen is...
View ArticleRe : generateChangeLog for multiple schemas in MySQL
The way that Liquibase is designed, it only works with a single schema at a time. I believe that support for multiple schemas would be a difficult change. Steve Donie Principal Software Engineer...
View ArticleLiquibase removes grant after updating function (DB - PostgreSQL)
Hi All, I am having issue with executing sql script with liquibase. Every first time executing sql function with liquibase, creates all the required grants for the PLSQL function. When modify the...
View ArticleLiquibase reverted grant after updating PLSQL function (DB - PostgreSQL)
Hi All, I am having issue with executing sql script with liquibase. Every first time executing sql function with liquibase, creates all the required grants for the PLSQL function. When modify the...
View ArticleLoading data with dates in Oracle throws DatabaseException
Loading data with dates in Oracle throws the following exception: liquibase.exception.DatabaseException: java.sql.SQLException: ORA-01861: literal does not match format string The simplified create...
View ArticleRe : Loading data with dates in Oracle throws DatabaseException
The problem must be in the format of either some or all the various date and timestamp fields. Oracle is probably more stringent about those than postgres is. The create table statement says that d_beg...
View ArticleRe : Loading data with dates in Oracle throws DatabaseException
You're right, I had to use the date format of 'DD-MM-RR'. This I found out by doing the following query: SELECT value FROM v$nls_parameters WHERE parameter ='NLS_DATE_FORMAT'; The documentation says...
View ArticleRe : Loading data with dates in Oracle throws DatabaseException
Ok, found out how to do this: <changeSet id="20140903-initial-data-usr_specs" author="Bart"> <loadData encoding="UTF-8"...
View ArticleLiquibase gives different results from Ant and the command line
Hi. I raised this on StackOverflow a few days ago, but no-one has answered it there yet, so I thought I would try here. In short, when I run the Liquibase command, the FILENAME column is populated with...
View ArticleRe : How to create a "super"-table which will be always created infront of...
Hello together, From my perspective it would be nice to have a new optional attribute global, which will always be true and will let the property behave as it was before. <property...
View ArticleSupport for Hive (Hadoop) schema changes via Liquibase?
I used to manage database deployments via sourcing .sql text files and it was problematic. I now have a number of applications a group of us has built whose SQL deployment operations I am managing in...
View ArticleRe : generateChangeLog for multiple schemas in MySQL
I have a couple years experience using Liquibase with multiple schemas in MySQL and we've tried a few things. First, I haven't really used generateChangeLog. Instead, for our initial deployment, I've...
View Article