Re : New Liquibase Site: Looking for feedback.
New site looks good. Examples need work. "A String" isn't very helpful... :-) <changeSet author="liquibase-docs" id="sqlFile-example"> <sqlFile dbms="h2, oracle" encoding="A String"...
View ArticleRe : Can Liquibase handle this scenario?
http://stackoverflow.com/questions/16536931/can-liquibase-or-flyway-handle-multi-non-linear-versioning-scenario/
View Articleupdating a row with liquibase
Hi everyone,I'm new to liquibase and I was wondering if it is possible to update an existing row with liquibase?This is what i'm trying to TABLE:col1 | col2123 0124 1and I want to change...
View ArticleRe : updating a row with liquibase
Sorry, got a mistake there, meant to write:<changeSet author="myName" id="7799"> <sql> UPDATE TABLENAME; SET COL2='1' WHERE col1='123';...
View ArticleSetting classpath option for the liquibase maven plugin.
I run liquibase both via Spring context and via the liquibase maven plugin.When I ran via Spring context, I refer to the changelog files as:<include...
View ArticleMapping primary key types in liquibase and hibernate
When I create a table via liquibase I have to use int type. And cannot use long cause it's not supported: <column name="id" type="int"> <constraints primaryKey="true"...
View ArticleRe : Mapping primary key types in liquibase and hibernate
If I want to use long as type in Java code, I have to use bigint as type in the liquibase. So, the issue is resolved.
View ArticleGenerate the ChangeSet with maven
Hi,It´s possible to generate the ChangeSet by Maven? Thanks
View ArticleRe : Need a precondition/check to detect if a changeset is RE-executed?
bump... really interested in this...
View ArticleRe : Precondition evaluation in nested changelog files
This would be an awesome feature that we could really use in our implementation of LiquibaseNathan, any word on when we could expect this to be available?
View ArticleRe : Liquibase leaves temp files behind
Is this a problem in liquibase 3.0? I discovered it on my site when I kept getting reports that my build server was comsuming too many resources. As we tracked it down it seems to be the large number...
View ArticleRe : Liquibase leaves temp files behind
It still is a problem in 3.0, but it is on my short list of issues to clean up before 3.0 GA.Nathan
View ArticleRe : Formatted SQL with a comment.
Hi,I'm a new user And i would know if comments are available now ?Thank you
View ArticleFailed to execute goal...
HelloI have some problems, to generate my first log of my database. I´m using the maven plugin 3.0.0-rc1.This is my log in debug mode, anyone can help-me to fix?[DEBUG] Configuring mojo...
View ArticleHow do one add.update existing table 'remarks'?
Hi, I missed adding a remarks on table in <createTable>? How do I just add remarks attribute for the same table. Rest of the table structure is fine and requires no change.I appreciate any...
View ArticleHow do one add or update existing table 'remarks'?
Hi, I missed adding a remarks on table in <createTable>? How do I just add remarks attribute for the same table. Rest of the table structure is fine and requires no change.I appreciate any...
View ArticleDatafile User Input in Liquibase
How could I save user input for datafile path in the variable TS_DIRECTORY (see below) and have Liquibase use that input in creation of tablespace? The following two bolded lines cannot be used in...
View Articlemssql-extension
I'm trying to create an extension for mssql and like to get the mssql-extension project as a starting point (https://liquibase.jira.com/svn/CONTRIB/trunk/mssql-extensions).But got an error saying: Bad...
View ArticleCustom SQL (x{NN}) becomes The 'sql' tag allows you to specify whatever sql...
I happend to notice there is a change in data being inserted databasechangelog table.Previously, in Liquibase 2.0.5, Usage of <sql> will generate "Custom SQL (x9)" in DESCRIPTION field,2.0.5 in...
View Article