Cannot find database driver for Redshift
Trying to run the following command java -jar scripts/liquibase-core-3.3.3.jar --username=root --password="myfakepassword"...
View ArticleRe : Cannot find database driver for Redshift
I haven't tried it, but usually you use the driver property to point to a JDBC driver class and not a jar containing it.As the redshift repository does not contain such a class i would probably just...
View ArticleDoes liquibase support PostgreSQL 10?
Hi,Does liquibase 3.5 support support PostgreSQL 10?mvn liquibase:generateChangeLog fails to generate the initial...
View ArticleSet search_path and not use public
I am running liquibase on Redshift and it looks like I need to have a specific command in my script to 'set search_path to my_non_public_db'otherwise, it basically creates everything in public....
View Articlemvn plugin not working
Hi guysI´m trying to do a rollback for the very first time and i´m doing via maven plugin with this command:liquibase:rollback -Dliquibase.rollbackTag=1.17But maven responds me with this error: BUILD...
View ArticleRe : mvn plugin not working
Your problem is that you declared a dependency to the liquibase-maven-plugin and not the use of it.see http://www.liquibase.org/documentation/maven/You need to include the plugin in the <plugins>...
View Articlewhat is the default value for a column of type boolean which is nullable?
what is the default value for a column of type boolean which is nullable?I assume it is null but just would like to check
View ArticleCan we Hadoop Hive Database?
Hi,I'm new to Hadoop Hive, now I'm interfacing Hive PHP utilizing Apache thrift, its working great. Do I need to know where is the Hive Database record store on the server ? (Database document way)....
View ArticlediffChangeLog with Firebird databases
I was making some tests with diffChangeLog command, and it seems to be strange.If i compare the same database in Firebird, it brings me a lot of changes, like this: <changeSet author="Victor...
View ArticleClob with Base64
I have currently a clob column in oracle db where i am storing the value in base64 format, how this can be done using liquibaseI tried as given below <insert tableName="IMAGES"> <column...
View ArticleHadoop HDFS: DateNode directory on system partition?
Hi,We come up short on space on our Hadoop Cluster that is set up thusly: 1x 1TB HDD/<-Ubuntu System Partition 3x 1.5TB HDD/data1/data2/data3 <-HDFS Data Volumes The framework parcel is nearly...
View ArticleNeed suggestion for best approach to deploy Liquibase on legacy product using...
I have an application that is currently deployed via RPM. I'm working on including database migration as part of this, and am trying to determine best approach that accomplishes the ability to deploy...
View ArticleHow to generate liquibase change logs along with basic preconditions ?
Hi,I used generateChangeLog command on an existing database. It helped me auto generating 'create' changesets for all tables, sequences. I am interested to know if there is a way to doing same and get...
View ArticleRe : How to generate liquibase change logs along with basic preconditions ?
I don't think this is possible, but sounds like a reasonable change request for https://liquibase.jira.com/secure/Dashboard.jspa
View ArticleRe : How to generate liquibase change logs along with basic preconditions ?
In general, you don't need to have preconditions for things like 'table exists' before the change that creates a a table because liquibase will see that the change to create the table has already been...
View ArticleNullPointerException when using `addColumn`
Hey all,I'm getting an error with a simple liquibase setup. I've provided details in this stackoverflow question: liquibase-simple-changelog-nullpointerexceptionI've also created a simple repo with the...
View ArticlegenerateChangeLog fails to include columns in createTable commands
Hello, I'm new to Liquibase and am looking to see how it can be used on an already existing project. I found the documentation on how to generate a changelog against our existing MySql DB. But all of...
View ArticleRe : generateChangeLog fails to include columns in createTable commands
It sounds like you are doing reasonable steps and getting unexpected results. I see you have logLevel debug already set, can you share the logs?Steve DoniePrincipal Software EngineerDatical, Inc....
View ArticleRe : generateChangeLog fails to include columns in createTable commands
Sure. Sorry it's a bit ugly (thanks terrible windows command line).C:\Users\elumpkin\Desktop>java -jar...
View ArticleRelease Updates
Liquibase Community, I want to provide a quick update on the promise I made near the end of last year about maintaining a healthier update cadence to the Liquibase project. The Datical leadership team...
View Article