Jenkins Liquibase Runner Plugin
I thought the liquibase community might like to know that I've just released the Jenkins Liquibase Runner Plugin (wiki page). It provides a builder that evaluates a changelog, and presents details...
View ArticleRe : Error: changeSet -> preConditions and tagDatabase
It appears that liquibase is saying there is an XML syntax error in your changelog. It says the error is on line 17, but it doesn't look like your changelog is 17 lines long. Steve DoniePrincipal...
View ArticleRe : Error: changeSet -> preConditions and tagDatabase
Sorry, the error message was another file. Now, correct trace ... INFO 10/03/16 15:15: liquibase: Successfully released change log lock Unexpected error running Liquibase: Error parsing line 15 column...
View ArticleRe : Error: changeSet -> preConditions and tagDatabase
OK - as with your previous stack trace, this is telling you what the problem is.Error parsing line 15 column 51 of schema/sgrusr01_seq.xml You haven't included the file, so I can't tell you any more...
View ArticleRe : Error: changeSet -> preConditions and tagDatabase
The file is in the first post ...
View ArticleRe : Error: changeSet -> preConditions and tagDatabase
OK. So google translate says that this message:"Foi detectado um conteúdo inválido começando com o elemento 'createSequence'. Era esperado um dos...
View ArticleHow to get oracle session parameters to apply to all changesets.
We have the need to set an oracle session parameter whenever we run ddl updates. We have 2 databases where the data is replicated and have different character sets defined but we have to run our ddl...
View ArticleRe : Firebird remarks
Unfortunately support for remarks is currently a bit hit and miss. The fix should make it into 4.0, but for now you'll have to use <sql> tags.Nathan
View ArticleRe : Jenkins Liquibase Runner Plugin
Very cool. Thanks for building it. Let me know if there there are any liquibase bugs you run into or features that would help you out.Nathan
View ArticleRe : Notification when liquidbase executes insert
There are few listener-style APIs in liquibase. The main one you would probably be interested in is liquibase.changelog.visitor.ChangeExecListener. You can set that on the liquibase.Liquibase object or...
View ArticleRe : Rollback runs if precondition fails
I just ran into this issue. I'm trying to make my change sets work for both MySQL and Postgres. The updates work great, but on rollback it tries to run the MySQL rollbacks which fail because the...
View Articlecolon in changeset id in sql format
Hi all,I' m wondering is it there a possibility to use colon in id attribute while using sql changeset formati.e. I want to have id like id01:02 But it seems than sql changelog parser interprets the...
View ArticleRe : colon in changeset id in sql format
There isn't currently an escape character, unfortunately. You can't have a colon in the idNathan
View ArticleRe : Rollback runs if precondition fails
What version of liquibase are you running?Nathan
View ArticleLoad Data from CSV where one column value is derived from a sql
Hi,I am trying to load data from csv file.One of my insert columns value with type as NUMBER maxValue is the result of the sql 'select max( id) from myTable'.All the other values are picked up from...
View Articleorg.hibernate.dialect.Dialect not found
I am using hibernate-core-4.2.7.SP1-redhat-3.jar for Hibernate. When I run Liquibase diffDatabaseToChangeLog from ant I get the warnings below. I tried Liquibase jars liquibase-hibernate4.2-3.5.jar...
View ArticleValidate only with Spring integration
When we use hibernate in production we specify "validate" as the DDL command, so that if we deploy an app it will check that the database is in the expected state, and if it isn't, then it'll throw an...
View ArticleIntegration with Dropwizard and JUnit
HiI've been asking on stackoverflow, but there's no response (here)I want to automatize my DAO tests, so I want to use the liquibase schema to create a tables for me. Also, as I didn't see the other...
View ArticleRe : Validate only with Spring integration
I am not familiar with the Spring integration, but on the command line there is a status command that returns the number of changesets that need to be run....
View ArticleRe : Integration with Dropwizard and JUnit
See comments, etc. at Stack Overflow link.Steve DoniePrincipal Software EngineerDatical, Inc. http://www.datical.com/
View Article