Re : SQL Server example
It looks like you aren't giving liquibase a command. It should be something like this:D:\Liquibase>java -jar liquibase.jar [command]There are a lot of different commands you can give to liquibase....
View ArticleRe : SQL Server example
Hi Steve,I tried using generateChangeLog but I get a different error now. D:\Liquibase>java -jar liquibase.jar --changeLogFile="D:\Liquibase\scripts\demo.txt" --diffTypes="data"...
View ArticleRe : SQL Server example
Thanks for the help guys, it started working. Not is a matter of learning the commands and there usage.
View ArticleVersion 3.1.1 writing status results to stderr?
Related to http://forum.liquibase.org/topic/updatesql-writes-to-stderr-not-stdout & https://liquibase.jira.com/browse/CORE-1412, I think the status command is still writing the final success...
View ArticleRe : SQL Server example
I think the issue is how you are setting the classpath property. Rather than this:classpath="D:\Liquibase\Drivers\sqljdbc4.jar"It should be this:classpath=Drivers/sqljdbc4.jarThe path should be...
View Articlecharacter encoding using insert
Hello,similar problems have been discussed here but unfortunately their solution didn't help.I'm trying to insert a value containing a special character ("März") into one of my tables.I do this...
View ArticleUndocumented BLOB feature
Hi,According to this issue: CORE-1107 Ability to load blog/clob data from files there is an ability to load BLOB/CLOB files using valueBlob/valueClob attributes of the Column tag. In practice, however,...
View ArticleescapeProcessing not working for packages executed using sqlFile
Hi I have an exisiting SQL file that create a package and some functions.I am executing this using <sqlFile> tag.in the SQL, there is an instance where we call a function with xml content as...
View ArticleUsing "runAlways" in Liquibase formatted sql file
I'm looking for some help to see if I am using the "runAlways" attribute correctly in a liquibase formatted sql file.Version of Liquibase: Liquibase --versionLiquibase Version: 3.1.1I am trying to drop...
View ArticleRe : Using "runAlways" in Liquibase formatted sql file
This is not a defect. I see what I am doing incorrectly.I am supposed to be using: runAlways:trueIn the example I set up, I'm using "=" rather than ":". Now that I've made this change, the script is...
View ArticleHow to handle database changes made by an automatic upgrade script?
I've asked my question on stackoverflow.com 2 days ago but nobody answered, so I'm asking here.We're a team of developers working on a web application that also use Wordpress as part of it. We want to...
View ArticleRe : How to handle database changes made by an automatic upgrade script?
I responded this morning on Stack Overflow. Short answer is that you could just ignore it, or you could do a diffChangeLog after each Wordpress upgrade.Steve DoniePrincipal Software EngineerDatical,...
View ArticleLiquibase Jenkins Plugin
Hello all,I thought work I've started on a Jenkins Liquibase Plugin may be of interest. The source code is available on github here: https://github.com/jenkinsci/liquibase-runner-pluginI'm hoping to...
View ArticleRe : How to handle database changes made by an automatic upgrade script?
Thank you!If I would use diffChangelog, I assume I would need to compare the updated database to its previous state, and I would also need to mark the changeSets as if liquibase already applied them to...
View ArticleRe : IndexExists performance
I'm using Liquibase 3.2.0 snapshot and also suffering from severely slow performance in the index checks. I did some digging and found the query (Oracle) and stack trace is where the slowness appears...
View ArticleRe : IndexExists performance
http://forum.liquibase.org/topic/column-exists-precondition-is-slow appears to also be related to this issue.
View Articleliquibase 3.1.1 with ant and sql anywhere
Hi there,having issues with ant and liquibase with sql anywhere. All I want to do is to apply a createIndex statement to a table.using liquibase maven plugin everything is okay. unfortunately the ant...
View Articlecreating rollback statement for changeset leads to general object value...
Hello,I just started with Liquibase (version 3.1.1) and came across following situation:I created a rollback statement (with a delete change inside) and added it to a ChangeSet.Then I wrote the...
View ArticleORA-00911: invalid character
I have this liquibase change set: <changeSet author="Yong Wang" id="GRANT_TO_CS_APP_1" runOnChange="true"> <sqlFile endDelimiter="\nGO" path="SQL/grant_to_cs_app.sql"...
View ArticleRe : ORA-00911: invalid character
It seems to like this combination:<changeSet author="Yong Wang" id="GRANT_TO_CS_APP_1" runOnChange="true"> <sqlFile endDelimiter="\n" path="SQL/grant_to_cs_app.sql"...
View Article