UTF 8 encoding not working for Postgres DB migrations
Hello,I am using Liquibase to implement our DB versioning and migration. We use Postgres DBs.I came across an error today when I ran a Changeset, SQL formatted, that added a comment to a column in a...
View ArticleLiquibase rollback not working with "Liquibase Rollback Successful"
Hi guys! Please, can you help me with rollback action? It is some kind of magic - liquibase report me about successful rollback action, but nothing change.We use sql formatted SQL. For example i have 3...
View Articledata Difference between two schemas in Liquibase
Hi All,I am running the below commandjava -jar liquibase.jar --driver=<driver name> --clasapth=<classpath + liquibase jar> --changeLogFile=<file name + path> --url=<schema1>...
View ArticleInsert with subselect
Hi,I want to execute a query as follow:INSERT INTO table1 ( field1_pk, field2, field3) values ( 'value1', 'value2', (select field2 from table2 where field1_pk =...
View ArticleJava 9 Support
Currently liquibase fails to work on java 9 due to incorrect parsing of the version number, there is are some pull request to try to fix this https://github.com/liquibase/liquibase/pull/710We have...
View ArticleCode referencing com/amazon/redshift/core/jdbc42/PGJDBC42DriverImpl at runtime
HelloI am using liquibase to connect to Redshift to manipulate my DDL. I am using the following Pom dependencies: <dependency> <groupId>com.amazon.redshift</groupId>...
View ArticleUse Liquibase, hsqldb and postgre
Hello,I am new to liquibase and started to learn it. I set my postgre database and connected it to liquibase.driver: org.postgresql.Driverclasspath: ./lib/postgresql-9.2-1002-jdbc4.jarurl:...
View ArticlePhoenix/Hbase Extension
Hello Everyone,I developed a extension to do schema management for Phoenix/HBase. It is available at https://liquibase.jira.com/wiki/spaces/CONTRIB/pages/119734276/Phoenix+HBase+Extension. Please try...
View ArticleLiquibase java 8 LocalTime, LocalDate, LocalDateTime support
Hi, I use liquibase on many project, but we need to used java 8 date/time object. When i use liquibase to create Diff with database and java all java 8 date type is create with BYTEA in liquibase...
View ArticleRe : data Difference between two schemas in Liquibase
team, help/tips to acheive my above stmt will be much appreciable.
View ArticleRe : Not loading SnakeYAML?
Hi, I am facing the same issue. I tried creating lib dir but still not working.I am using liquibase 3.5.3.
View ArticleRe : Liquibase vs SQLPLUS for SPOOL output.
Are you able to solve this problem? If then, please share me the steps
View ArticleRe : Liquibase vs SQLPLUS for SPOOL output.
When using Liquibase keep in mind, that it is executing all sql commands directly via JDBC. So all non JDBC conform command will throw a error.I know many DBMS have command line tools with special...
View ArticleError in url: jdbc:postgresql://localhost:5432 liquibase
I am new to liquibase and unable to follow the docs and expected behaviour .I want to setup the liquibase for local database named liquibase. Here i dont know hich commands are to be executed first and...
View Articlehow can I run a set of changeSet in transaction
HiI need to run a set of changeSet in transaction, how can I do it ?Or maybe a way to "--changeLogFile update" in transaction.I know that each changeSet has a transaction, but I need only one...
View ArticleRe : how can I run a set of changeSet in transaction
I was thinking in use the updateSQL to an output file, take this file and put it all in one single changeSet as sql.But if i di't it, I'll lose all my preCondition.
View ArticleThe liquibase.exception occurs during generateChangeLog when mssql constraint...
HelloI created the TestDb on Microsoft SQL Server 2014, then I created the table CREATE TABLE [dbo].[TestTable]( [Id] [uniqueidentifier] NOT NULL, [Name] [nchar](10) NULL, [Number] [int] NULL,...
View ArticleLiquibase 3.5 CORE-2553
does anyone know the syntax for disabling reorg statement when adding columns to a DB2 database tables (as described in liquibase v3.5 CORE-2553)
View ArticleRe : Liquibase 3.5 CORE-2553
It somewhat depends on how you run liquibase - from the command line, via the maven plugin, or something else?In each of the cases, you would set the property autoReorg to true or false. If you are...
View Article