Re : Liquibase not starting up
Hello Jonathan,If you are working with Jenkins, try using the following example:Here is a sample shell script example to consider in a Jenkins file using declarative pipeline:#!/usr/bin/env...
View ArticleRe : Liquibase not starting up
Steve,Thanks for the suggestion. But the nature of my issue is such that it's best to show what's going on through a screenshare and call. I need a timeline on when we could set this up as this issue...
View ArticleloadUpdateData tag not working in Oracle when using sqlplus
When I use the tag = loadUpdateData, liquibase creates an anonymous block in oracle. In oracle when you execute an anonymous block within sqlplus session it expects to end it with "/". Since liquibase...
View ArticleRe : endDelimiter issues Mysql
Thanks for getting back Mark11!Am discussing this with more knowledgeable folks internally :)
View ArticleRe : endDelimiter issues Mysql
Hi Mark11,1. The reason you don't need the "DELIMITER /" statement is because it is already defined as a changeSet attribute "endDelimiter: /"Just run your SQL as:CREATE DEFINER=`root`@`%` EVENT...
View ArticleRe : endDelimiter issues Mysql
Hi Steve Z, Thanks for your reply. 1. To be clear, I have tried running it without modification, both "manually" by copying the complete output of an updateSQL (including the inserts to...
View ArticleRe : loadUpdateData tag not working in Oracle when using sqlplus
Hi Mihir,Please try to upgrade to our latest Liquibase version. https://download.liquibase.org/The upgrade might solve your issue as we have made some major bug fixes since 3.5.x.Thanks,Steve Z.
View ArticleLiquibase not applying changesets in expected order
I have a Spring Boot 1 application running on PostgreSQL where I've setup my changelog.xml file as follows:<?xml version="1.1" encoding="UTF-8" standalone="no"?><databaseChangeLog...
View ArticleRe : Liquibase not applying changesets in expected order
I found the problem.In my schema.sql I had all of my create table statements as: CREATE TABLE public.xyz .. but in my insert_user_local.sql I had only:INSERT INTO user_detail(...instead of...
View ArticlePrevent new ChangeSet before already applied ones
Hello.I´m starting with Liquibase for a new project.(I my past I already used some different DB maintenance tools.)There is one thing which I didn´t find a solution for in Liquibase:Say, I have a...
View ArticleRe : Liquibase is NOT fully supporting for SAP HANA DB
Does this resolve your issues?https://github.com/liquibase/hana-liquibaseThe SAP HANA team built this and transferred the repos to the Liquibase org in GitHub. Let us know how it works for you!Robert
View ArticleDoes liquibase support data migration from one database to another
Hello,I have a scenario where we are migrating from Oracle DB to Postgres Sql, i know i can generate a changelog from Oracle schema using liquibase maven plugin and can use the same to create my schema...
View ArticleRe : Does liquibase support data migration from one database to another
Where will your PostgreSQL database be hosted? AWS Database Migration Service is pretty good with replicating data.The schema creation in DMS is...lacking. So,you'll definitely want to test that.Of...
View ArticleRe : Does liquibase support data migration from one database to another
It will be hosted on sap cloud and i am integrating liquibase inside our application which is built on spring boot 2.2
View ArticleRe : Does liquibase support data migration from one database to another
Cool. Only thing we've done with SAP Cloud is make sure the SAP HANA extension works with HANA Cloud.BUT, I do know that the cloud folks have solution architects available as part of their offering....
View ArticleRe : Does liquibase support data migration from one database to another
Thank you. So, even if we use HANA, then liquibase should work without any issues right?. Also, can i generate data using mvn liquibase:generateChangeLog -Dliquibase.diffTypes=data and use the sql or...
View ArticleRe : Does liquibase support data migration from one database to another
We just got a big update to the SAP HANA extension from SAP themselves. There's a couple of caveats. One, you have to build it yourself.git clone https://github.com/liquibase/hana-liquibase.gitmvn...
View ArticleRe : Does liquibase support data migration from one database to another
Sure, will have a look on HANA . But when i run this command in our projectmvn liquibase:generateChangeLog -Dliquibase.diffTypes=data , it is generating a sql file which contains all the insert...
View ArticleRe : Does liquibase support data migration from one database to another
Hey, good catch on the -Dliquibase.diffTypes=data stuff. I edited my comment above to make sure Google doesn't save it forever. Ha!I don't think you're doing anything wrong, but I do think it's a...
View ArticleRe : Does liquibase support data migration from one database to another
Sure thank you, will have a look at the syntax to be on the safer side but i dont think there would be any issues as if schemas are created properly then data should be inserted. Also, I am trying to...
View Article