Re : 2 classpath questions
I was trying to use it with gradle, but my issue regarding the Teradata extension mentioned in my post prevented that from working at all, so this question is restricted to the shell.Using liquibase if...
View ArticleSupport for Liquibase extensions in offline mode
Hello All, I'm trying to use maven + liquibase + mssql extension in offline to generate database scripts. I have included the mssql extension jar file in the pom.xml. But when I build, i do not see any...
View ArticleLiquibase with EDB PostgreSQL
Hi All,I'm doing a POC on Liquibase and EDB Postgresql. I'm getting following error when I try to deploy the changes 2nd time. I have to drop the log tables to continue deployment.I enabled audit and...
View ArticleHow to do an alter session
Hi all,There is a nice feature in Oracle Db called EBR (Edition Based Redefinition) but in order to use it I need to do for ex :alter session set Edition=V1;How to do that with liquibase before create...
View ArticleNew Extension: Liquibase Snowflake support
Howdy,I'm happy to announce a new extension to support Snowflake. The extension can be found at the extension portal. Source code can be found on GitHub.-bruce szalwinski
View ArticleRe : How to do an alter session
I did a changeset sqlfilethe migrate.sql file is nice...-- *********************************************************************-- Update Database Script--...
View ArticleHow to Create Procedure on HANA database through Liquibase
Hi Currently I am trying to create procedure on HANA database, but does not quite working, it is able to insert record into databasechangelog and does not show any error during the execution, however,...
View ArticleRe : Looking for feedback on cross-database support
Hi Nathan,I can share my recent experience for using changlog file generated from Oracle and used it for HANA database, the following adjustments I had to make to use the same changlog successfullly,...
View ArticleRe : Looking for feedback on cross-database support
We manage changelogs that are targeted against Oracle and Postgres and sometimes SQL Server. One thing that we had to take care of is Oracle's "char semantic". In order to ensure that VARCHAR(30) is...
View ArticleRe : Liquibase handling Default data and then adding data from hibernate in...
Hello, if i understand, 1 - you added a new user in admin table by a changeset that ran.2 - After this, you tried to add a new user via your web application in the same table.At my first read, it seems...
View ArticleRe : Multiple Configurations in liquibase-maven-plugin
An alternative is to use a properties file in <configuration>...</configuration> and define one profile for each database configuration to apply it at the plugin's execution.So you can...
View ArticleRe : How to Create Procedure on HANA database through Liquibase
Passing sql files into the xml just works fine, we will take it as resolution for now. <changeSet author="DBTest-AllProc" id="1491933527660-9999"> <sqlFile...
View ArticleRunning Liquibase code 3.5.3 is slow
Hi,I have the set of Liquibase scripts which recently got migrated from 2.0.1 to 3.5.3. Scripts which were running in 25 mins in 2.0.1 is taking about 1 hr 55 mins to execute in 3.5.3. We cannot...
View ArticleOracle extensions - create synonym
Hi all, I'm using the Oracle extension to create a synonym. I'm using this XML as a test: <changeSet id="9" author="miami.user" failOnError="true"> <ora:createSynonym...
View ArticleUnable to replace logger, ServiceLocator.instance() returns null
Java SDK 1.8.0_131Liquibase 3.5.3eclipse IDE Neon 3 (eclipse 4.6.3)I am trying to replace the logger as outlined in Fixing liquibase logging (in Spring) with SLF4J and Log4J but so far I haven't been...
View ArticleRe : Unable to replace logger, ServiceLocator.instance() returns null
Now I've succeeded in having the custom logger picked up when running in the unit tests.What I did to fix this, was to ensure that the getPriority() method of my logger returned a high number:package...
View ArticleHow can I set the Sender's address in Jenkins?
I'm sending mail from Jenkins to an anonymous SMTP relay internally. That relay then securely sends mail to exchange online via TLS on port 587. The transport works perfectly, the issue is that...
View ArticleRe : Unable to replace logger, ServiceLocator.instance() returns null
Now I have liquibase logging to the karaf log instead of flooding the karaf console.It wasn't easy, but I got help: see this message on the karaf user mailing listIn short, what's needed, is:A maven...
View ArticleRe : Unable to replace logger, ServiceLocator.instance() returns null
Here's a karaf feature that will install liquibase-core and fix the log: https://github.com/steinarb/liquibase-karaf-feature To install: clone this project and build it with maven: mkdir -p ~/git cd...
View ArticlesqlFile in sqlCheck
Hi,I am using Liquibase (aml) and would like to include the <sqlFile> in <sqlCheck> in <preCondition>.I would like to do something like this:<preConditions onFail="HALT">...
View Article