Liquibase and SQL Server 2016
Hello,We are using liquibase for schema creation and upgrades over different versions. The issue we are facing is with SQL Server 2016 and 2017. Its working fine till 2014. Here is what we needWe need...
View ArticleHow to add preconditions into changeset with code
How to add preconditions into changeset with code?In my code, use XMLChangeLogSerializer to generage changeset log file, xmlChangeLogSerializer.write(databaseChangeLog.getChangeSets(), fos);but...
View ArticleOracle endDelimiter pbm
Hello all.I wonder why I did not see such a pbm there or elwhere in the net... peharps I'm a noob ^^The pbm I face off is when I run liquibase to create packages, the "/" symbol from my division has...
View ArticleWhy does Liquibase generate needless statements?
I am using liquibase 3.5.5 and have generated a changelog file from my oracle database but the changelogs are somehow strange since there are always two statements for creating an index and then adding...
View ArticleOracle Wallet Reference
Hi there, Can anyone please advise how to reference an Oracle wallet to connect instead of username & password in Liquibase command or Properties file ?I have an Oracle wallet configured but just...
View ArticleWhat is meant by the phrase adapter/connector?
This is a basic questions. I want to apply to an entry level java developer position with the following requirement:Familiarity with the Sailpoint Identity IQ standard adapters/connectorsBy standard...
View ArticleMySQL diffChangeLog converts VARCHAR(50) to VARCHAR(50 BYTE) and other oddities
We are using liquibase to generate change logs for MySQL database.When creating a change log it seems to convert VARCHAR(50) to VARCHAR(50 BYTE), INT to INT(10) among other things.VARCHAR(50 BYTE) is...
View ArticleLiquibase for two pg schemas
Hi there!This would be probably my last stop before abandoning LB and doing changesets manually.The goal I have is quite through: I need to evolve the postgresql database with two schemas...
View ArticleRe : Oracle endDelimiter pbm
Okay, found.The right answers was just there : http://forum.liquibase.org/topic/oracle-end-delimiter-issueBut enDelimiter is not enough : 1) the sql file has to be UTF8 encoded, 2) the final "/" as to...
View ArticleRe : Creating/replacing packages using Liquibase
Hello,I hope you have answer your pbm, but in case I will give my experience with packages on Oracle database with liquibase ^^Initialy, I had one sql file that create all my packages for each single...
View ArticleValidate Context in xml files?
Is it possible to extend liquibase to validate contexts of xml file.I would like to be able to create a command line parameter which provides a list of valid context and then liquibase would perform...
View ArticleRe : Validate Context in xml files?
It's software, so anything is possible, and it's open source, so have at it!Steve DoniePrincipal Software EngineerDatical, Inc. http://www.datical.com/
View ArticleRe : Creating/replacing packages using Liquibase
Thanks a lot for the reply Phillipe!I still don't have the solution; that is until your post. My approach (as it was before I've started using Liquibase) was to have single sql file for each package,...
View ArticleRe : Creating/replacing packages using Liquibase
I think that what Phillipe meant was rather than "enDelimiter", it should be "endDelimiter", and rather than "trip comment" it should be "stripComments".So, going back to your original changeset, it...
View ArticleRe : Validate Context in xml files?
I am going through the code. Was hoping if someone can point me in the right direction on how to extend liquibase to create a new command line parameter and perform validation on context value after...
View ArticleRe : Validate Context in xml files?
The command line handling is done in liquibase-core/src/main/java/liquibase/integration/commandline/Main.javaThere is a method parseOptions that looks for args starting with two dashes. It then takes...
View ArticleDB2 defaultSchemaName after upgrade from liqubase 3.5.5 to 3.6.2
Hi,I'm using liquibase with spring boot and DB2.To setup the defaultSchemaName I used the spring boot parameter spring.liquibase.default-schema=...my schema name was "myTestDB".With version 3.5.5 every...
View ArticleHow to resolve Liquibase changeSet error?
I have use Liquibase for my spring hibernate web application. Now I added new change set to update my database. When I try to restart my web application, Liquibase asks to drop database. But in my case...
View ArticleRe : Unable to launch liquibase using command line
I just tried to upgrade as well from a 3.5.X build to 3.6.X (3.6.2 specifically although this seems to be general to the minor version bump): I *do use the script and it pulls in the...
View ArticleTagging overwrites last tag
I'm doing some testing prior to implementing Liquibase into our process and I found that tagging works in an unexpected way. I've generated a baseline changelog to bootstrap a new DB and have applied...
View Article