Re : Liquibase reverted grant after updating PLSQL function (DB - PostgreSQL)
Liquibase doesn't do anything with grants, my guess is that for some reason the database is dropping them. Are you doing drop/creates where you could be doing alter statements? Nathan
View ArticleRe : Informix generateChangeLog issue
Thanks for the troubleshooting. I created https://liquibase.jira.com/browse/CORE-2278 to track the issue. Nathan
View ArticleRe : Table and column remarks => dbDoc
I created https://liquibase.jira.com/browse/CORE-2280 to track the feature request. Nathan
View ArticleRe : Liquibase taking too long to execute changeset
I created https://liquibase.jira.com/browse/CORE-2281 to investigate the issue further. I've done some snapshot performance improvement since 3.2.0, can you try it with the neweest 3.3.2 version? Nathan
View ArticleRe : UpdateSQL ignores dbms type?
I'm using liquibase 3.3.2, run through maven. I have some changesets that are ran on only one database type. Sample: <changeSet author="nthorn" id="1418685979642-17-hsql"> <preConditions...
View ArticleRe : Understanding validCheckSum
Thanks for reminding me. I updated the docs, let me know what you think. Nathan
View ArticleLiquibase doesn't honor type modifiers
Code: AddColumn.Column col = new AddColumn.Column(); ... col.setType("INT(10) ZEROFILL UNSIGNED"); changeSet.getChangeSetChildren().add(addCol); Output: ALTER TABLE tablename ADD testcolumn INT NULL;...
View ArticleRe : Liquibase taking too long to execute changeset
Hi Nathan Thanks a lot for your reply and creating a ticket in liquibase core forum. I am just curious to know did you find similar issue when you were doing performance improvements on version 3.2.0?...
View ArticleRe : Extending Liquibase to support Cassandra
I am also looking for same. From where i get this modified jar file.
View ArticleMaximum csv file size for loadData
Hi, I'm trying to use Liquibase to import data into a large database table. I'm running with this command: liquibase --driver=oracle.jdbc.OracleDriver ^...
View ArticleRe : Maximum csv file size for loadData
Seems like something that should and could be fixed in Liquibase. Just curious - why you are using Liquibase to load that much data? What is the use case? I would recommend that you use native tools...
View ArticleRe : Extending Liquibase to support Cassandra
It should be at https://github.com/liquibase/liquibase-cassandra/releases but it looks like there have been no builds yet. It's a community-contributed extension so I haven't really looked at it much....
View ArticleRe : Maximum csv file size for loadData
Thanks for your response Steve, The reason for doing this is that I'm migrating a legacy application to Liquibase, and it would be convenient if I could build the entire database from liquibase, rather...
View ArticlegenerateChangeLog reports success but no changes listed
I'm trying to run generateChangeLog on an existing derby database. It has a number of tables in it. c:\Projects\core\cams>java -jar lib\liquibase.jar --classpath=derby.jar;derbyclient.jar...
View ArticleProblem using HSQL in Test profile
Note: I am new to Liquibase and HSQL. The application uses Oracle and JPA. Through liquibase performing DDL and DML to initialize the environment. Everything works fine at the time of deployment. The...
View ArticleExecuting Stored Procs across platforms
The syntax for executing a stored proc is different across databases (call vs exec vs nothing, etc) RIght now we would have to have different <sql> sections for a single stored proc call for each...
View ArticleSupport AutoIncrement in creating objects
Hi. I would like to use liquibase not only to install or update a database schema for my application, but also to create some objects using the auto_increment feature of the database and create links...
View ArticleRe : Support AutoIncrement in creating objects
I would humbly suggest that Liquibase is the wrong tool for the job. I see Liquibase's single responsibility as 'manage database schema changes' and loading data is not a part of that responsibility....
View Articlevalidating if databasechangelog has more commits than in provided log file
Hi, Is there any way to tell liquiebase to validate if the provided changelog file has all changesets already applied to database, and in case it doesn't - throw an exception? e.g there were 2 changes...
View Article