Re : SpringBoot ptoject Rollback
No, your database would not get automatically rolled back to an earlier version. Steve DoniePrincipal Software EngineerDatical, Inc. http://www.datical.com/
View ArticleUpload mysql dump into database
Hi. I am using Liquibase in a Dropwizard java project with Gradle. I have attempted to load a mysql dump via several different approaches, none of which have been successful. I'd very much...
View ArticleWhat's the proper way to conditionallly create a view?
I use derby and PostgreSQL and they have different syntaxes for aggregating over years and months ("YEAR(timestamp)" vs. "extract(year from timestamp) as year" (both result in a column name year or...
View ArticleRe : What's the proper way to conditionallly create a view?
Also, instead of selecting on dbms, I would have preferred to select on capability so that instead of creating a view just for derby I would create a view for all dbms'es that follow the same syntax...
View ArticleShow WARNING when executing dropAll as SYSTEM on oracle
Hi,I'm not sure whether I'm not doing something wrong (only simple dev here) but trying to execute dropAll on connection with oracle SYSTEM results with nothing being dropped.I did some digging and...
View ArticleRe : What's the proper way to conditionallly create a view?
The suggestion to have two changesets with the two different definitions is what I would recommend. You can use multiple dbms names separated by commas to show that the changeset should apply to any in...
View ArticleRe : Show WARNING when executing dropAll as SYSTEM on oracle
If it wouldn't bee too much trouble, can you write this up as a ticket in Jira? That will help us get the issue addressed.https://liquibase.jira.com/projects/CORE/issuesSteve DoniePrincipal Software...
View ArticleRe : Show WARNING when executing dropAll as SYSTEM on oracle
Here you go https://liquibase.jira.com/browse/CORE-3510.Zbynek
View ArticleRe : Show WARNING when executing dropAll as SYSTEM on oracle
Thanks!Steve DoniePrincipal Software EngineerLiquibase Community EngagementDatical, Inc. http://www.datical.com/
View ArticleRe : What's the proper way to conditionallly create a view?
Thanks for the feedback!I don't know which DBMSes that use the same syntax as derby...? Maybe all/most of them, but "!postgresql" seems a bit drastic...? Will changing the dbms list in the...
View ArticleRe : What's the proper way to conditionallly create a view?
I don't know which DBMSes that use the same syntax as derby...? Maybe all/most of them, but "!postgresql" seems a bit drastic...? (According to a bit of googling, MySQL and MSSQL use the same...
View ArticleRe : What's the proper way to conditionallly create a view?
Change the dbms attribute will not affect the checksum of a changeset. This is also true for the labels and contexts attributes. Steve DoniePrincipal Software EngineerLiquibase Community...
View ArticleLiquibase maven plugin with JDK11 failing
I'm using Apache Maven 3.3.9 Java version: 11.0.5 And the latest version of liquibase-maven-plugin as follows: <plugin> <groupId>org.liquibase</groupId>...
View ArticleEdition Based Redefinition from Oracle and liquibase plugin 3.8.1
Hello I would like to specify the edition from oracle, it means, before doing any change in the database I have to execute ALTER SESSION SET EDITION = <name_of_edition>. Is there any way to do...
View ArticleRe : Liquibase maven plugin with JDK11 failing
Thanks Elena!I answered this on StackOverflow:https://stackoverflow.com/questions/58952978/liquibase-maven-plugin-with-jdk11-failing/58963756#58963756Steve DoniePrincipal Software EngineerLiquibase...
View ArticleRe : Edition Based Redefinition from Oracle and liquibase plugin 3.8.1
we've been able to solve it executing a first sqlFile changeset that executes ALTER SESSION SET EDITION = <name_of_edition>. It looks like the connection is properly changed and that we're able...
View ArticleRe : Edition Based Redefinition from Oracle and liquibase plugin 3.8.1
Glad to hear. It sounded like you were having two separate issues. On the second issue (creating a procedure) I think your changeset is malformed. Not sure if Liquibase gave you an error message on...
View ArticleRe : Liquibase maven plugin with JDK11 failing
Thanks. I also answered and post the answer here as well, to avoid other people to make the same mistake as me . I was adding the dependencies in the wrong place. I was adding them as 'regular'...
View ArticleRe : Edition Based Redefinition from Oracle and liquibase plugin 3.8.1
Hello You're right, we've been doing test using files in yaml, json and xml format. We had different error messages with the different formats. I'm completely new to liquibase and I didn't properly...
View ArticleRe : Liquibase maven plugin with JDK11 failing
Excellent! Thanks for adding those details. Steve DoniePrincipal Software EngineerLiquibase Community EngagementDatical, Inc. http://www.datical.com/
View Article