in stanza?
I would like to insert a <rollback/> element in each of multiple <update> elements in a <changeSet>. As opposed to having a single <rollback/> element for the entire...
View ArticleAvoid schema/catalog sql generation
I was checking how Generator implementations work, and I was wondering how to generate each script without catalog/schema name before object (for, mainly, script generation purposes).As I can see,...
View ArticleRe : MS SQL Server Remarks not working
The SQL generation does not currently handle remarks in sqlserver. I created https://liquibase.jira.com/browse/CORE-1780 to track the featureNathan
View ArticleRe : Avoid schema/catalog sql generation
When you have a blank catalogName/schemaName, the escapeObject method should leave off the schema from the generated SQL.Are you seeing it added? If so, what database are you using?Nathan
View ArticleRe : Tag changset in sql format
Formatted SQL does not attempt to handle any logical change command including tag, it only supports raw sql.Currently the command to tag the database depends on the database type, but is...
View ArticleRe : Avoid schema/catalog sql generation
I did 3 cases to test behaviour within both names: empty string, space string and without tag, and it still generating schema/catalog name.I am using below databases:Oracle Database 11g Enterprise...
View ArticleRe : Tag changset in sql format
Ok, thanks. I would like to use sql format and have some features from xml (tag, preconditions, context etc.). Is it good practice to write changesets in xml and sql command always insert into sql...
View ArticleRe : calling pragma before anything else ?
Yes, you could probably do with with a jdbc driver. I'm not sure exactly how off hand, though.Nathan
View ArticleRe : Infomix create table primary key
I think the jira permissions are fixed up. Atlassian seemed to do something strange with them the last couple days.Nathan
View ArticleRe : Liquibase commandline: diff
Hi,First thanks for this great framework and plugin!I'm having a similar problem while running liquibase-hibernate from maven. I started...
View ArticleSpringLiquibase old JavaDoc
The SpringLiquibase java doc still references the removed fields executeEnabled and...
View ArticleGenerated wrong drop index statement
HelloI am using Liquibase v3.1.1, and Sybase (ASE) 15.I tried to generate dropIndex statement and it is generating:drop index index_nameinstead ofdrop index table_name.index_name How could I extend...
View ArticleBetter understanding how Liquibase execute change sets
I want to understand better how Liquibase executes change sets. 1)a) For example I have a change log with 4 change sets and I execute updateDatabase...
View ArticleDoes Liquibase support dry run?
I have asked the question on stackoverflow (and still do not have an answer): http://stackoverflow.com/questions/21847482/does-liquibase-support-dry-runWe have couple of data schemas and we investigate...
View ArticleRe : Better understanding how Liquibase execute change sets
I have responded to this over on Stack Overflow: http://stackoverflow.com/questions/21969487/better-understanding-how-liquibase-execute-change-sets/21991851#21991851
View ArticleRe : Generated wrong drop index statement
I solved extending DropChangeGenerator with steps below:created DropIndexGeneratorSybase in package liquibase.change.ext (which liquibase check at lookups) override supports with "return database...
View ArticleBest way to extend an existing Change (maybe a limitation)
Hello!I need to extend AddColumn with an adicional field.Why can't I just create an AddColumnExtension extending AddColumn with my adicional field, and annotate class with the same @DatabaseChange with...
View Article