Multiple Configurations in liquibase-maven-plugin
Hi together,I am trying to configure the maven plugin (3.5.3) to run two different configurations on the same DB (but different user and different changelog).My current code for a single configuration...
View ArticleRe : Multiple Configurations in liquibase-maven-plugin
Can you post the two executions example so it can be verified?
View ArticleRe : Multiple Configurations in liquibase-maven-plugin
Hi Daniel,I wanted to do it like here http://stackoverflow.com/questions/4865767/liquibase-using-maven-with-two-databases<plugin> <groupId>org.liquibase</groupId>...
View ArticleRe : ArrayIndexOutOfBoundsException on plpgsql anonymous blocks
As a workaround, using the "sql" change object instead of "sqlFile" gets me past the exception. But that's far from a perfect solution. How can I create a bug report?
View ArticleRe : ArrayIndexOutOfBoundsException on plpgsql anonymous blocks
Thanks for finiding that - you can report bugs at https://liquibase.jira.com/projects/CORE/Steve DoniePrincipal Software EngineerDatical, Inc. http://www.datical.com/
View ArticleLiquibase handling Default data and then adding data from hibernate in same...
I am using liquibase to insert default user in database in admin table. I am using my web application (Spring boot, Hibernate ) to register new users. After populating database with default admin user,...
View Article2 classpath questions
1. I'm trying to use the teradata extension: https://github.com/liquibase/liquibase-teradata/wikiWhat is meant by "Simply add the liquibase-teradata.jar file to your classpath"? The only way I have...
View ArticleGenerateChangeLog Error with HANA database
Hi..I am trying the 'GenerateChangeLog' option to the current SAP HANA Database. Properties File: driver: com.sap.db.jdbc.Driver classpath: D:\\liquibase-3.5.3-bin\\driver\\ngdbc.jar changeLogFile:...
View ArticleRe : 2 classpath questions
How the classpath is constructed differs depending on how you are using Liquibase. Are you using the liquibase bat/shell scripts? From Windows or Linux? Are you using maven? Are you using something...
View ArticleRe : 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 Article