Track db manual changes without reference db?
Hi, I would like to achive the following workflow:- developers have a local copy of production db- developers change db manually during development- when the changes are ready, developers should be...
View ArticleRe : includeAll relativeToChangelogFile generates absolute path
I just made a test using version 2.0.5 and it was working better then. The only difference was with inlcudeFile -> 'database/views/...'includeAll -> './database/views/...' At least you could run...
View ArticleRe : Track db manual changes without reference db?
I believe https://liquibase.jira.com/browse/CORE-1657 will solve this?
View ArticleChecksum changed between liquibase 3.0.4 and liquibase 3.0.5 - suggestion for...
We have a changeset applied to production via liquibase 3.0.4. Using newer versions of liquibase we can't apply later changeset because the check sum is different for different liquibase versions. It...
View ArticleConverting an existing database to liquibase
I am in the process of upgrading a client deployment from an old version of our system to a new version. Most of our new releases are already on liquibase. How do I convert the existing client database...
View ArticleHow to connect to database when not using socket /tmp/.s.PGSQL.5432
Hi!If I the database server is listen on any other socket than /tmp/.s.PGSQL.5432, how can I connect to the database with Liquibase?If the server for example is listen to...
View ArticleRe : How to connect to database when not using socket /tmp/.s.PGSQL.5432
The logic for connecting to the database is just the standard JDBC url, so however you normally connect to the database should work just fine with Liquibase.Nathan
View ArticleRe : Liquibase 3.0.6: change to the handling of Boolean?
Since you are using <sql> liquibase cannot parse or know that 1 and 0 are going into a boolean column to do any sort of conversion. You could use changelog parameters like:NSERT INTO Variable...
View ArticleRe : How to connect to database when not using socket /tmp/.s.PGSQL.5432
Thanks, but is it possible to connect the Postgres database with JDBC if the postgres database server listen on /Users/myAccount/liquibase_test/.s.PGSQL.5432?Erik
View ArticleRe : Converting an existing database to liquibase
You can create your first changeset automatically.http://www.liquibase.org/documentation/generating_changelogs.html
View ArticleRe : generateChangeLog does not work with enum
This should work correctly now in 3.0.8Nathan
View ArticleRe : How to connect to database when not using socket /tmp/.s.PGSQL.5432
It looks like the JDBC driver doesn't support connecting via a socket, only by porthttp://jdbc.postgresql.org/documentation/91/prepare.htmlNathan
View ArticleRe : Liquibase 3.0.6: change to the handling of Boolean?
That's an interesting technique, I'll try that.We use liquibase to manage some reference and test data and we found it easier, so far, to dump and massage sql…How effective is the use of the liquibase...
View ArticleRe : How to connect to database when not using socket /tmp/.s.PGSQL.5432
Thanks Nathan, I have to find out any other way to solve my problem.Erik
View ArticleThe total flow to migrate
There are 2 scenarios--Database is already being used by customer and therefore I generate the changelog to get the current scehma.-The schema is created with liquibase.Questions1. In both the cases...
View ArticleMSSQL modifyDatatype on Indexcolumns
Hi guys,I'm trying to create a customchange that modifies datatypes on a mssql database where indexes and/or primarykeys are involved.Reason: On mssql its not possible to change a columns datatype...
View ArticleOutputFile without schema
Hi there, I am using ant liquibase to generate the sql script files we need to manually run in prod and uat. Our database is oracle 11g. The problem I have is that the schema name is hardcoded in each...
View ArticleSQL Changelogs - Multiline Rollback
Hi,is it possible to have multiline rollbacks in the sql file format? The homepage says it like this:--rollback SQL STATEMENTbut what about multiple lines? Thanks
View ArticleTable comment conflicts with modifySQL.append
Hi everyone,In Oracle, you can create a partitioned table like below:CREATE TABLE FOO(ID NUMBER(10)) PARTITION BY RANGE (ID) INTERVAL (1);Oracle XE does not allow to use partitioning so the same table...
View Article