Re : Delimeter in migration sql.
There is no global configuration at this point. I created https://liquibase.jira.com/browse/CORE-1808 to track the feature request. You can control it in some change commands like <sql> but not...
View ArticleExtend Changeset
HelloI am saving changelog.xml in database, then parsing back to objects and working with them on my web application.But I got a demand that needs to flag each change with a boolean to verify it will...
View ArticleRe : Upgrade 2.0.5 => 3.1.1
There may be some checksum differences between 2.x and 3.x due to checksum algorithm changes. It should be consistant between linux and windows, though. You say that with 3.x you are seeing problems...
View ArticleRe : --defaultsFile argument not taken in account when running from antother...
I usually run liquibase as:../../liquibase --defaultsFile=liquibase.properties updateand it seems to work. Is that the setup you are having problems with? Or am I misunderstanding the question? Do you...
View ArticleRe : Avoid schema/catalog sql generation
Thanks for the update, sorry I hadn't gotten to look at it yet. Is your change something that would make sense to move into the general liquibase codebase?Nathan
View ArticleRe : Rollback script for packages
If you have a different changeSet with the previous definition, you could use the <rollback> tag with changeSetId changeSetAuthor and changeSetPath to re-reun the previous changeSet.If you are...
View ArticleRe : Generating rollback script for oracle packages
Duplicate of http://forum.liquibase.org/#Topic/49382000001042003 right?Nathan
View ArticleRe : Extend Changeset
It would probably make most sense to put on the changeSet. You would have to create a subclass of ChangeSet that is created by your ChangeLogParser. Are you using a standard changelog parser class? Or...
View ArticleRe : Delimeter in migration sql.
Thanks for the answer. I'll watch the issue.I actually have implemented a workaround using the google replacer plugin.
View ArticleRe : --defaultsFile argument not taken in account when running from antother...
Thanks for the reply.The context is that LB will be used in a moving environnement, called not from the root path of LB's bin, but rather from some random directory.So, I needed to be able to call LB...
View ArticleRe : Extend Changeset
Actually I didn't know that I could write my own ChangeLogParser. But I found another way:- created an enum called something like Process with atributes "process" and "dont_process"- when I create a...
View ArticleMapping for INTEGER on Oracle changed between Liquibase 2 and 3
It looks like the mapping for Integer columns on Oracle changed in different versions of Liquibase. What was previously generated as NUMBER(38,0) is now coming out as NUMBER(10,0). Here's an example...
View ArticleUser friendly web interface to create changesets instead of xml input: Needs...
I am creating a project which will take inputs from user in user friendly manner and create the xml file containing changesets. This will be a web project in Java.But I am not sure about the scope and...
View ArticleRe : Extend Changeset
If it is working for you, that is the main thing. Seems like a reasonable approach.Nathan
View ArticleRe : --defaultsFile argument not taken in account when running from antother...
Good, thanks for the update.Nathan
View ArticleRe : User friendly web interface to create changesets instead of xml input:...
Do you have any particular questions? Or just looking for general "what do you think of the idea?" responses?Nathan
View ArticleCan not generate a CHangelog from an existing Postgress Database.
Hi I am running a Postgress Server (EnterpirseDB 9.3.1.3 on x86_64-unknown-linux-gnu, compiled by gcc (GCC) 4.1.2 20080704 (Red Hat 4.1.2-52), 64-bit)I am using Liquibase version 3.1.1Within the...
View ArticleRe : Can not generate a CHangelog from an existing Postgress Database.
This looks like a classpath issue - liquibase isn't finding all the classes it needs to run. One thing you could do to diagnose it would be to edit the liquibase shell script and have it echo out the...
View Articlelast version db
Hello.Help me, please.Can i get last version db with liquibase?thanksSorry, my english
View ArticleRe : Extend Changeset
Nathan,Just to clarify in my next changes, how are the steps to create my own tags inside a ChangeSet?extend ChangeSet class adding needed attributes;create my own implementation of...
View Article