Re : Understanding validCheckSum
The validCheckSum tag is not included in the checksum computation, so it should not change by adding the tag.Nathan
View ArticleRe : Support Oracle 12c feature identity (autoincrement)
If liquibase doesn't support a feature in the built in tags like <createTable>, you can always fall back to the <sql> tag to specify exactly what you want. You lose some cross-database...
View ArticleQuestions about liquibase core classes
HelloI have some doubts about liquibase core classes:Why does liquibase.changelog.Changeset#getChanges return an unmodifiableList since I'd like to manipulate (directly delete or edit+update a...
View ArticleRe : diff usage: dialect path
maven-3.0.4liquibase-maven-plugin-3.1.1and liquibase-3.1.1liquibase-hibernate3-3.2Now I've fixed that error. never mind. That was incorrect plugin issue due I was using modified liquibase-hibernate...
View ArticleRe : Questions about liquibase core classes
ChangeSet.getChanges is read only because the code has not necessarily been tested with dynamic changes to the list of changes in it. There is a ChangeSet.addChanges method to add a change but not...
View Articlevarchar handling for reverse engineered Oracle tables
Hi,just a short question:When I reverse engineer a Oracle database table with a varchar2 column, I get a column type that includes VARCHAR2 and even the CHAR parameter (if the column was defined as...
View Articlecalling pragma before anything else ?
Hi,First I would like to say many thanks to the developers of liquibase, it is extremely useful to me, and saves me a lot of time!My context of use is with a sqlite database encrypted with sqlcipher....
View ArticleRe : diff usage: dialect path
Does anybody know a real example where liquibase diff works using maven-plugin, spring and hibernate?I'm pretty unsuccessfull with trying to configure it. Does not matter what DB I'm using. Oracle or...
View ArticleRe : PreConditions not working with outputfile
NathanThe gold question is: why precondition isn't wrote in outputfile?
View ArticleRe : Liquibase preconditions not working
It's not the expected result?onFail="CONTINUE"
View ArticleLiquibase support for CLOB data
I have several relations that contain CLOB data. I would like to insert data into these CLOB fields with INSERT and/or LOAD DATA. I have noticed several postings that mention an attribute of COLUMN...
View ArticleRe : Liquibase support for CLOB data
Nevermind. I downloaded the XSD and saw many "refactorings" that aren't in the documentation such as valueClobFile. With a little more reengineering I found the correct syntax and action.
View ArticleRe : Ant- update database outputDefaultSchema property
Thanks Nathan, I'll do the find and replace.
View ArticleRe : Ant- update database outputDefaultSchema property
Pull request for adding the flags to the ant task.https://github.com/liquibase/liquibase/pull/242
View ArticleRe : Using Maven security?
I took some time to examine this and I tested it with Maven 2.2.1 and Maven 3.0.x and in both cases the passwords decryption already worked. The WagonManager class used handles the decryption as far as...
View ArticledropAll fails on RedShift
Hi,I would like to execute dropAll on our RedShift DB, and I get this strange error. Unfortunatelly I don't even see from the debug output what SQL statement is causeing the problem (see below). On one...
View ArticleRe : Questions about liquibase core classes
ChangeSet.getChanges - is there any way to get these changes without "brute force" (like using reflection or internet workarounds for unmodifiablelist)?Since you said that the best practice is to do...
View ArticleRe : Generating SQL file per changeset
Yes, you can do by:calling constructor Liquibase.update(context. writer), since writer will be who will write your physical file.or 2. call change.generateStatements(database) (where change will...
View ArticleAccumulo support?
Could there be a driver for Accumulo? I would like to use liquibase to diff Accumulo databases.
View ArticleLiquibase commandline: diff
Hi, colleagues. I have quistion regarding diff or diffChangeLog usage from liquibase commandline tool.I have latest liquibase unzipped on my pc and I've put need drivers into lib folder.So, here is my...
View Article