Re : Error running dbDoc on a Sybase database
I am off on holiday until Monday. Will hopefully send request early next week.Dave
View ArticleRe : Error running dbDoc on a Sybase database
Sounds good. I'll be off next week so you can take your time.Nathan
View ArticleRe : Drizzle JDBC Driver support w/ MySQL
The stacktrace doesn't include the exception message. Also what version of liquibase are you running?Nathan
View ArticleRe : Drizzle JDBC Driver support w/ MySQL
I'm running liquibase off of a random point on master, 29708e5fce12a4bc0d0f88625e7976dae7cdeb50. I can rebase to the latest if that would be helpful. That stacktrace is not actually of an exception....
View ArticleRe : Drizzle JDBC Driver support w/ MySQL
I didn't realize 3.1 was just released, I just updated to 3.1 with the same result.Darren
View ArticleRe : Drizzle JDBC Driver support w/ MySQL
Looking a bit more at the code, apparently Drizzle JDBC driver will always return null for the catalog. But when liquibase queries the MySQL information schema it finds the table catalog to be "def."...
View ArticleRe : Has anyone managed to load any stored procs through Liquibase in to DB2
Please check your SP for special characters embedded in string assignment like --,*,; etc. Liqibase doesn't like those characters in SP.
View ArticleIssue related to tagging
Hi,I tag the database for every release. So in the changelog once I have run all the changesets, the last changeset has the tagHowever what I have observed is that this causes an update statement to be...
View ArticleRe : What privilege is required for preConditions in MySQL
I tried to toun on logging with no success. Seems like you are right: meta data are checked via JDBC API, not via explicit SQL queries.DB user has access to information_schema, this did not help.Thanks...
View ArticleLiquibase 3.1.x and Maven repository
Hi,I'm building a project with maven dependencies.Like <dependency> <groupId>org.liquibase</groupId> <artifactId>liquibase-core</artifactId>...
View ArticleRe : Has anyone managed to load any stored procs through Liquibase in to DB2
Also make sure you are using the <createProcedure> tag. That ensures that liquibase does not try to split it into separate statements.Nathan
View ArticleRe : Liquibase 3.1.x and Maven repository
It always seems to take a while for new versions to propagate through the various maven repositories. I publish versions through sonatypeIt looks like the changes are moving out from sonatype since it...
View ArticleModify generated output file when using update(Contexts contexts, Writer output)
HelloI am wondering on how to change the generated script when using update method with Writer.For example, I have the following header:--...
View ArticleRe : Modify generated output file when using update(Contexts contexts, Writer...
What sort of changes are you looking to make? It looks like the Liquibase.outputHeader() method is private currently but could be made protected so a subclass of liquibase.Liquibase could override it....
View ArticleRe : Issue related to tagging
Like you said, the current implementation of tagging just marks the last changeset with the tag. We can't overwrite the tag value in other rows because we don't want to erase previous tags. Ideally...
View ArticleRe : Modify generated output file when using update(Contexts contexts, Writer...
Sorry, I wasn't logged on.Not just change to protected, but maybe center all stuff about script generation (from separators to content displayed, order, tabs), so it could be just extended and...
View ArticleRe : Modify generated output file when using update(Contexts contexts, Writer...
Customization is one of the major features I'm aiming for, but it may help to have a little more information on what you are looking for. Currently there is the header that is generated by the...
View ArticleRe : Issue related to tagging
Hi Nathan, Thanks. This explains the current process RegardsPiyush
View Article