Re : How to build statistics for an update run
Nice! I've never done any Scala, but it is certainly readable. Seems like it would be pretty straightforward to translate to Java or Groovy or whatever. I like your github username, by the way. Steve...
View ArticleLooking for 4.0 code review: Action/ActionLogic and testing
Looking for a quick code review/feedback on how the tests for 4.0 will work. https://github.com/liquibase/liquibase/pull/340 is the pull request for most of the Action changes I've done with 4.0 so...
View ArticleRe : Liquibase Inheritance creation
This is similar to some other questions on StackOverflow: http://stackoverflow.com/questions/25840467/liquibase-common-columns...
View ArticleRe : Liquibase Inheritance creation
Also, this forum is more for people changing liquibase itself rather than how to use Liquibase. Steve Donie Principal Software Engineer Datical, Inc. http://www.datical.com/
View ArticleRe : Liquibase Inheritance creation
Thanks for the information Steve. I did not get much answers regarding the inheritance in liquibase from the links you provided. Would it be helpful and easier to implement inheritance using hibernate...
View ArticleRe : Bootstrap performance on Oracle with lots of Table
There were some good performance improvements with Liquibase 3.4.0. Can you try with that version? Nathan
View ArticleRe : Liquibase modify dbchangelog table
Sorry for the slow response. I'll put a fix into 3.4.1 to not send alter statements if the type is different https://liquibase.jira.com/browse/CORE-2461 Nathan
View ArticleLiquibase 3.4.0 loadData fails on mariaDB.
Seems like loadData from csv fails after csv file contains more than 50 (default threshold in InsertSetStatement) rows on mariaDB 5.5. Related to CORE-864. After 50 rows, data is split into two inserts...
View ArticlePreconditions column exists
Using liquibase 3.4.1 I want to rename my columns in Oracle to uppercase if they exist. I always get the following error no matter what I do: Unexpected error running Liquibase: ORA-00957: duplicate...
View ArticlePassword encryption in Liquibase properties file
To manage migration with Liquibase, I am using a properties file that holds all the information about the database connection. The pitfall of this file is that it discloses my database password since...
View ArticleRe : Password encryption in Liquibase properties file
If you google "Password Encryption in Liquibase" you will get some results that answer the question....
View ArticleWhile executing the liquibase script, how to print the comment the one which...
<changeSet id="Aug050815" author="myApplication" > <comment>Test comments 1</comment> </changeSet> </databaseChangeLog> While executing the liquibase script, how to...
View ArticleSilently stopping Liquibase at mid-update
Is there any way I can cancel a Liquibase update after I started it? I've a list with around 5000 changesets, and I need to prevent all changesets from a specific point forward, to not be executed if...
View ArticleTranslator from MySQL to liquibase
Do you guys know if there are any tools to convert SQL scripts into LB .xlm files? It would really come in handy in order to import all my previous changes and sum them up in order to be able to do a...
View ArticleRe : While executing the liquibase script, how to print the comment the one...
You would need to run Liquibase programatically (i.e. from your own Java code) and write a class that implements the ChangeExecListener interface. The class implementing the interface would get...
View ArticleRe : Translator from MySQL to liquibase
I assume you mean .xml rather than .xlm What you would do is: 1. Create a clean, empty database. 2. Apply the SQL scripts that you have to the database. 3. Run the Liquibase generateChangelog command...
View ArticleLiquibase java not applying changesets
Hi, I'm using Liquibase directly from Java 8, after adding the Maven dependency for Liquibase 3.4.0. My project includes some database interactions with an Oracle 11g database (I included ojdbc6.jar in...
View ArticleRe : Preconditions column exists
Oracle doesn't consider case when checking for table names or column names.Thus you don't even have to rename your columns !
View ArticleRe : Silently stopping Liquibase at mid-update
If you know the number of changesets you have to apply, you could use the equivalent of command line's action "updateCount <value>" in whatever way your are using liquibase. Or is there no way to...
View ArticleRe : Liquibase java not applying changesets
See my reply on StackOverflow Steve Donie Principal Software Engineer Datical, Inc. http://www.datical.com/
View Article