executeCommand - Oracle 'sqlplus'
Is there a way to use executeCommand against sqlplus ? I want to run a script that has some commands that liquibase does not support(like SPOOL) using executeCommandIf so, how should my changeSet look...
View ArticleFunctions, Stored Proc, and the Like
Looking at the history of database stored procedures and functions and the like is notoriously difficult. It occurs to me that I could put all our stored procedures and functions in git and just...
View ArticleUnable to (view not found)
When I try to delete a view I get the following message:SEVERE 3/23/19 11:12 PM: liquibase: db-changelog/db-changelog-1.0.0.xml: db-changelog/db-changelog-1.0.0.xml::drop-existing-accountsview::sb:...
View ArticleState of liquibase cassandra
Hi there,Wonder what is the state of liquibase cassandra integration? Looks like last commit was in July 2015 in https://github.com/liquibase/liquibase-cassandra/commits/masterCame across this...
View ArticleRe : State of liquibase cassandra
Hi, Aleks!Liquibase and Datical are committed to Cassandra support. We think it's been too long since we've seen an update to this.That's why we've partnered with DataStax to help with this. All of us...
View ArticleRe : Unable to (view not found)
For some reason, this problem went away: I ran into a lot of issues when trying to run the new changesets on PostgreSQL and after correcting all of the issues I was able to add the offending...
View ArticleRe : Unable to (view not found)
Hm... when I look at the log output from the failing unit test it looks like <dropView> runs without error. Maybe I've been fooling myself (wouldn't be the first time...):INFO 3/30/19 11:26 AM:...
View ArticleRe : Unable to (view not found)
I was indeed fooling myself, both the first time and now this time. The failing unit test had the following code in it: // Test the database by making a query using a view try(Connection...
View ArticleRunning a Liquibase change log from within a change set?
Here's the scenario.There are multiple microservices, each runs using Spring Boot. Data is persisted in a common database, with each microservice having it's own schema. Over time as the tables for a...
View ArticleRe : State of liquibase cassandra
Hi Robert,Thanks for the update. It is very helpful.Our Cassandra version is 3.11.*.Cheers
View ArticleURGENT: Moving views and functions to files for better version control
Hey guys! I'm moving all of our view and functions to files for better version control with git. I'm using sqlFile obviously.However, I'm struggling with how to handle the granting of privileges....
View ArticleURGENT: failOnError="false" and runAlways="false" don't seem to have the...
With failOnError="false" and runAlways="false" I'd expect to have an entry in the databasechangelog regardless if there was an error or not. This is not the case. Therefore, I assume that the...
View ArticleRe : URGENT: failOnError="false" and runAlways="false" don't seem to have the...
FYI, I can confirm that with failOnError="false" and runAlways="false", no record of the changeset is made in the databasechangelog and the changeset continues to be attempted over and over again.
View ArticleaddColumn rollup for Oracle
Good morning, all. Long time user of liquibase, first timer here on the forums.I was helping implement Liquibase in an Oracle shop, and stumbled across the concept that Liquibase's 'addColumn'...
View ArticleIssue related generateChangeLog in MySQL
Hello,I am trying to create a JSON file from existing DB in MySQL using Liquibase generateChangeLog command. But I am getting runtime error. The following is the command with all switches. Here are...
View ArticleParsing liquibase.properties paramter not used
I will use the liquibase properties file to pass parameters for using in the changelog.I tried setting the parameter like name=valueandparameter.name=valueBut both does not work. Here the...
View ArticleNot identical behaviour of mv:liquibase:diff and exceuting diff via maven...
Hi, when I execute command line "mvn liquibase:diff", in order to compare my JPA entity model and existing database, a get appropriate diffChangeLog.xml (with two FKs added). But, when I add custom...
View Articleinitial install dump
Hello, I would like to have a command launched at the end of the cycle ony if success : mysqldump --no-create-db --no-data "${database}" > "${curdir}/db/structure.sql"mysqldump --no-create-db...
View ArticleWhere are the supported jdbc drivers listed for the liquibase-maven-plugin?
I am trying to configure <plugin> <groupId>org.liquibase</groupId> <artifactId>liquibase-maven-plugin</artifactId>...
View ArticleRe : Where are the supported jdbc drivers listed for the liquibase-maven-plugin?
Okay, after some sleuthing around on the internet, <driver>???</driver> is the Java class name for the JDBC Driver.
View Article