Re : How to identify changes inside changeset when manipulating XML?
Liquibase doesn't uniquely identify the Change objects, only the changeSet. You do normally want one change per changeSet, though. You want to do that because liquibase tries to run each changeSet as a...
View ArticleRe : liquibase offline and databasechangelog table
Thanks for creating the issue. I'll comment on there.Nathan
View ArticleRe : Liquibase Maven plugin with alternate goals
Thanks for creating it and pointing it out. Is assembleChangeLog something that you think should be included in the normal liquibase maven plugin (and that you would want to contribute)?Nathan
View ArticleRe : sql formatted changelog file and "filename" attribute
I believe that i'm current.In my test I called liquibase with the full path of the .sql file and that is what it wrote in the databasechangelog.On my team we always set logicalFilePath= in the...
View ArticleRe : sql formatted changelog file and "filename" attribute
Yes, that feature should work. You can mix and match formats in your <include>. I'll look into the full file path issue you are seeing.Nathan
View ArticleRe : Liquibase Maven plugin with alternate goals
I'd certainly be open to that, but it feels and smells a little bit outboard right now. I am intending to detail and/or evangelize our approach to modular Liquibase on the forums before I go any...
View ArticleOracle and DropAll. Should drop all dblinks, packages, functions, types,...
Dear all,I'm starting with liquibase and Oracle data base and I have noticed that the dropAll command doesn't drop all objects in the data base, for example in a Oracle 11r2, after a dropAll execution...
View ArticleMaven Plugin does not use outputDefaultCatalog property
Hi,I think I found a problem in the Maven Plugin. It does not seem to use the prameters outputDefaultCatalog or outputDefaultSchema.If I run the command line tool like this:java -jar...
View ArticleException: Unknown Liquibase extension
Hello,I wrote my own extension. In eclipse it all runs well. Also deploying it together with the whole liquibase core works perfect.Trying to make a jar separately and putting this jar to the lib-path...
View ArticleOracle changelog validation connecting to H2
Hi, In production I'm using Oracle and all my changelogs have been written with Oracle in mind.In my development environment I'm trying to generate the changelogs on an H2 instance in Oracle...
View ArticleRe : Redshift support
Unfortunatelly I'm back with the "TIMESTAMP WITH TIME ZONE" problem. Although it doesn't happen on the changelog tables, but if I use type="TIMESTAMP" in any of my changesets, it still adds the "WITH...
View ArticleRe : Liquibase Installation issue
http://www.liquibase.org/download/If the instructions there are not clear, please explain where you are having problems.
View ArticleRe : How to identify changes inside changeset when manipulating XML?
Ok, I got it!But actually I didn't find a JAXB equivalent API to work with objects. Could you give me a start point?
View ArticleRe : How to identify changes inside changeset when manipulating XML?
Start with the javadocs:http://www.liquibase.org/javadoc/liquibase/Liquibase.htmlWhat you probably want to do is start by creating a Liquibase Object - there are a couple of different constructors you...
View ArticleRe : How to identify changes inside changeset when manipulating XML?
Oh. dammit!I was almost rewriting this facade for xml objects using ObjectFactory generated by JAXB parsing, just adding some particular mandatory fields and input patterns.I'll take a look, thank you!
View ArticleBroken updateSQL functionality
Generate SQL fails on 3.0.8/3.1.1 when the database is created from scratch(applying all changes on empty database). It works well on 3.0.3. Command : liquibase --logLevel=info...
View ArticleParameters for tags
Hi,It's still me and my parameters on sqlFile.Since version 3.1.0, they are correctly taken into account inside sql File.Now you can have :changeSet1.xml :<?xml version="1.0"...
View ArticleRe : getting DB2i support working in 3.1
Hi Nathan, Thanks for your reply. Two DB2i specific code snippets have been deleted with commit 66905ca9: * in UniqueConstraintSnapshotGenerator.listColumns(). That one is easy to fix in the way you...
View ArticleOffline changelog feature usage
I understand that Liquibase finally supports off-line generation of changelogs. That's great news!Currently I use something like:// Live connection: WANT TO GET RID OF THISAbstractJdbcDatabase database...
View Article