MySQL types discrepancies when generating diff logs in XML
I made a couple of posts in Liquibase Users on this topic. For example:Â http://forum.liquibase.org/topic/mysql-types-don-t-match-when-generating-diff-logsMy observation is that the XML diff files use...
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 ArticleUnexpected error running Liquibase: Invalid SQL type: sqlKind = UNINITIALIZED...
Error running liquibase update ( liquibase version 3.5.4 - Oracle 12.1.0.2)Below sql fails with the error, Invalid SQL type, its validated to execute without any errors in pl/sql, sqlplus.--liquibase...
View ArticleSET ROLE for running migrations
Hi, apologies if this has been asked before or if I missed this in the docs - I'm using postgres and I would like to have my migrations run not as the user liquibase is connecting to the DB as, but as...
View ArticleRe : Unexpected error running Liquibase: Invalid SQL type: sqlKind =...
I have also tried it with the latest version Liquibase 3.6.2, Appreciate any inputs, we are already in production and stuck with deployment C:\mine\myprojects\liquibase\liquibase-3.6.2-bin>liquibase...
View ArticleRe : Unexpected error running Liquibase: Invalid SQL type: sqlKind =...
The main thing is that liquibase connects to databases using the appropriate JDBC driver. This limits the SQL that can be used. It isn't always clear, but some 'SQL' is only valid when sent from a...
View ArticleRe : Unexpected error running Liquibase: Invalid SQL type: sqlKind =...
Thank you for a quick response Steve.Apparently , the issue was to do with the endDelimiter.I was able to run this successfully with the following changes1. Remove the liquibase format tags from...
View ArticleIssue using Oracle Proxy user with JDBC OCI
HiI'm trying to use proxy user connect with liquibase and oracle 12 and its not using the proxy user but using the username specified in properties file instead. I saw this in one of the discussion,...
View Article