Is it possible to generate whole SQL output as script?
We are using Liquibase in application development and it is working quite good for us. When it comes to deliver a first version or an update to the customer it is necessary to include the SQL scripts....
View ArticleRe : Checksum Failure in Spring but No Problem in Maven
Hi Thanks for the reply.I managed to solve my problem by clearing the checksums and let liquibase regenerate again.RegardsIan Lim
View ArticleUnable to run liquibase for a json or yaml change log
I get a parsing error when i use a json or a yaml change log, although i put snakeyaml in the classpath.xml changelogs are working fine. please let me know if you see any problems...
View ArticleRe : Unable to run liquibase for a json or yaml change log
By "stable version" do you mean 2.0.5? Yaml support is only available in the 3.0 RC builds.Nathan
View ArticleRe : Unable to run liquibase for a json or yaml change log
thanks nathan for your reply. yes i am using 205. i am not sure how stable the 30 rc build is. are you almost ready to release it?
View ArticleRe : Unable to run liquibase for a json or yaml change log
I'm trying to have a final 3.0.0 build by the end of the week. There are a few bugfixes post RC2, including shipping the required snakeyaml jar file, but there shouldn't be much else.Nathan
View ArticleRe : Unable to run liquibase for a json or yaml change log
thanks nathan. looking forward to 300.good luck!juni.
View ArticleRe : RE : Fuctions in liquibase using postgresql data base
Thank you for posting the fix you eventually found!
View ArticleRe : Character encoding problem when using sqlFile
Hi all,this is a quite boring issue, in addition it is very easy to fix directly the code. Is there a specific process to submit patch?The issue can be resolved with few lines of code. This is the fix...
View ArticleSQL format changelog
Hi there, I'm having difficulty in getting the ID and AUTHOR fields to populate correctly in the DATABASECHANGELOG table. If I use an xml file for my changelog the update works fine (<changeSet...
View ArticleHow to reference a persistence unit name in Liquibase
I want to perform a liquibase:diff between an existing database and my entities defined in JPA annotations. Actually, instead of using a persistence.xml to define the entityManagerFactory, I am using...
View ArticleRe : Character encoding problem when using sqlFile
I included the fix for maven in 3.0 based on Francesco's changes.Nathan
View ArticleRe : How to reference a persistence unit name in Liquibase
The trouble maybe that the support in the blog post hasn't made it into a liquibase-hibernate release yet and so you need up build the plugin yourself. Part of the reason for not having the new release...
View ArticleRe : SQL format changelog
It is working correctly for me. Can you post your sql file and how you are calling it?Nathan
View ArticleRe : SQL format changelog
Here are the contents of my sql file:--liquibase formatted sql--changeset testuser:1create table test1 ( id int primary key, name varchar(255));I'm calling it from the command line with the...
View ArticleCustom change: can I designate a field as not affecting the checksum?
Is there a way to designate a particular attribute of a custom change as not affecting the changeset's checksum?Background: I've written a column copying change/refactoring element that accomplishes...
View ArticlePreconditions: is it deliberate that they can only check database snapshot...
It appears that preconditions can only check the state of the database as it existed at the beginning of the Liquibase run. Is that on purpose?For example, suppose we have the following...
View ArticleRe : Preconditions: is it deliberate that they can only check database...
The changeSet level preconditions should be checking the state at the time the changeSet runs, not from the beginning, so in your scenario changeset 2 will see that table A exists, even in the first...
View ArticleRe : Custom change: can I designate a field as not affecting the checksum?
What version of liquibase are you using? 2.x? And by "custom change" do you mean a customChange implementation or a class that actually extends the Change interface as a liquibase extension?Nathan
View Article