Re : LiquiBase adding multiple columns in PostgreSQL
https://github.com/liquibase/liquibase/pull/315 Steve Donie Principal Software Engineer Datical, Inc. http://www.datical.com/
View ArticleRe : Liquibase-3.3.0 -- not working with JBoss vfs
Hi Nathan sorry for the late response. We upgrade Liquibase to 3.3.5 but the issue still occurs in JBoss. Looks like Liquibase still fails if refering jar file using vfs in the classpath, 10:11:15,997...
View ArticleRe : Liquibase-3.3.0 -- not working with JBoss vfs
I am guessing the the vfs: prefix is referring to commons-vfs, which is supposed to allow access to differing file systems somewhat transparently. In this case, it appears that JBoss may be using it to...
View ArticleRe : LiquiBase adding multiple columns in PostgreSQL
Hi Steve, Thank you very much for the quick reply. Thats great to know ! I have been through the "github" link, it says the fix has been done for MySQL. I am not sure if it applies for PostgreSQL as...
View ArticleRe : LiquiBase adding multiple columns in PostgreSQL
I have not tested it, but the code appears to be database-platform agnostic and should work on all supported databases. Steve Donie Principal Software Engineer Datical, Inc. http://www.datical.com/
View ArticleRe : LiquiBase adding multiple columns in PostgreSQL
Thank you very much Steve for the reply again. I will take this up further. Thanks, Venkat
View ArticleRe : CDILiquibase not reliable working
You might have more luck posting this to StackOverflow, tagging it with liquibase and wildfly. Steve Donie Principal Software Engineer Datical, Inc. http://www.datical.com/
View ArticleRe : LiquiBase adding multiple columns in PostgreSQL
Hi Steve, I just came to know that, the change is effective in MySQL database only not in PostgreSQL database. I am further working on this. Thanks, Venkat
View ArticleCan I add changelog property to liquibase.properties file?
this is my liquibase.properties file: #Liquibase.properties driver: oracle.jdbc.OracleDriver classpath: ojdbc7.jar url: jdbc:oracle:thin:@10.0.2.1:1521:mydb username: USER password: pswd this is my...
View ArticleRe : CDILiquibase not reliable working
Thank you for your response. Will try it on SO Independently: Can you recommend us how to get rid of the CDI and to integrate it into the EJB container on startup, without CDI? Also, is there a way to...
View ArticleRe : CDILiquibase not reliable working
I personally have no familiarity at all with CDI, so I can't really help. Steve Donie Principal Software Engineer Datical, Inc. http://www.datical.com/
View ArticleRe : CDILiquibase not reliable working
Hello Steve, thanks for your reply. The question was not to CDI it was how to get rid the CDI. Means what type of startup in a EJB containter do you suggest? I know this:...
View ArticleRe : CDILiquibase not reliable working
Again, not something in my realm of expertise. There may be other people here who can answer, but I would suggest that StackOverflow probably gets more traffic, especially around EJB containers and...
View Articlerollback on error
Is there a way to completion LiquiBase after a failed update command is automatically launched rollback?
View ArticleLiquibase Update command not executing rollback changesets
Hi, I have the following changelog : <?xml version="1.0" encoding="utf-8" standalone="no"?> <databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog"...
View ArticleRe : Liquibase Update command not executing rollback changesets
By specifying an empty rollback tag, you have effectively told Liquibase "this does not need to be rolled back". Since the createTable change can automatically be rolled back, just removing the...
View ArticleRe : CDILiquibase not reliable working
Looking at the code for CDILiquibase, it checks the liquibase.shouldRun flag and if it is false, it does not execute. Your easiest route would be to either set the liquibase.shouldRun system property...
View ArticleRe : Liquibase Update command not executing rollback changesets
Actually, the rollback tag isn't empty, it is referencing a changelog. That is telling liquibase that to rollback changeSet "test-1111-rollback" you execute what is in "test-1111" which creates the...
View ArticleHow do I get Liquibase to print out the SQL it generated?
Hi, I’m using Gradle 2.7, the Liquibase 1.1.1 plugin and attempting to run my changeset on an Apache Derby (v. 10.12.1.1) in-memory database. Running the following changeSet fails immediately on the...
View Article