Re : "runalways" changesets seem to break rollback functionality
What about using the changeLog Parameter within the changeSet name, something like this: <changeSet id="tag-${build.number}" runOnChange="true" author="me"> <tagDatabase...
View ArticleRe : Announcing DB-Manul, a Liquibase fork for continuing and enhancing...
Hi Nathan,Bingo, that was the cause. I also verified the other JDBC drivers and changed the pom.xml so that compatible versions are used now. On my test VM, all embedded OSS RDBMS + MariaDB +...
View ArticleRe : "runalways" changesets seem to break rollback functionality
Daniel,Thanks for your help, that is certainly a lot better than what I currently have!There is still a small issue with the functionality, but I am convinced that it should not pose to much of a...
View ArticleRe : "runalways" changesets seem to break rollback functionality
Hi Sam,good point, didn't think about that.Just a wild guess, you may add a rollback to your tagging ChangeSet, that does the cleanUp in the Liquibase History Table for you.<rollback>delete from...
View ArticleRe : Announcing DB-Manul, a Liquibase fork for continuing and enhancing...
I merged in the pull request, thanks. This thread thread is getting a bit long and off topic... I created http://forum.liquibase.org/#Topic/49382000001706009 with what I found going through your...
View ArticleRe : Data Migration between environments
Hi,Please can you assist, in the same query. We are also having the sql files and wanted to convert the liquibase format. How can we do it.ThanksRupesh
View ArticleRe : Translator from MySQL to liquibase
Hi,I need the assistance to convert the oracle sql files into liquibase xml format and then migrate to Postgresql DB.As there are list of sql's + Data which are XML format of internal application tool...
View ArticleRe : Translator from MySQL to liquibase
The easiest approach is to execute the SQL files against your oracle database, then run generateChangeLog which will output the xml changelog needed to create the database. You may need to modify some...
View ArticleRe : Translator from MySQL to liquibase
Hi,Thanks very Much.Do we have tool to migrate? and what abt CLOB and BLOB datatypes, as it does not generated if extracted from oracle DB. we need to specify manually valueBlobFile and valueClobFile....
View ArticleRe : "runalways" changesets seem to break rollback functionality
Thanks again Daniel.Think I have enough to work around the issue for my needs.Cheers.
View ArticleRe : Translator from MySQL to liquibase
Hi,Please can you reply urgently, we need assistance on it.ThanksRupesh
View ArticleRe : Data Migration between environments
Hi,Please can you reply urgently, we need assistance on it.ThanksRupesh
View ArticleRe : Translator from MySQL to liquibase
There is nothing that I know of in Liquibase that can help convert CLOB or BLOB datatypes. Steve DoniePrincipal Software EngineerDatical, Inc. http://www.datical.com/
View ArticleUnable to tag the database using Liquibase for future rollback
I am trying to tag the database for future rollback using but getting below error:Applying updates to the database. This may take a few minutes ... Unexpected error running Liquibase: Error parsing...
View ArticleTriggers, Procs and Functions not working in H2
Hi, Triggers/SQL Types/Procedures not working in H2. Liquibase version :3.5.3 Samples in my sql file ----------------------------- create or replace PROCEDURE myProc END myProc; / Trigger:- ---------...
View ArticleDo not create Databasechangelog and Databasechangeloglock tables?
I am using liquibase-core-3.4.2.jar to execute sql file in one of the schema from command line. We noticed that Liquibase is creating 2 tables to track changesets. Our script will be executed in...
View ArticleHow to do a multi line insert query.
How do I make a multiline value on an insert query?What I tried: <column name="ColumnExample" type="varchar2(500)" value=" doc:application/msword \n...
View ArticleRe : How to do a multi line insert query.
Its fixed with:<column name="CHAR_VALUE" type="varchar2(500)" ><![CDATA[ line1 line2 line3 ]]></column>Where every enter in the XML file in CDATA with a \n Might wanna add it to the...
View ArticleInclude the same xml file twice.
Hello,I'm trying to call the same xml twice using the include tag. I get the duplicate identifiers error message.I looked up the forums and I see that this was resolved -...
View ArticleSybase - createProcedure does not work
Hi all,We are using Liquibase 3.5.3 with Maven 3.3.0 and Eclipse 4.5.2. Everything works and we can successfully run a Liquibase build with maven to our Sybase databases.However, for whatever reason,...
View Article