Error reading properties from liquibase.properties
I ran into an error:[ERROR] Failed to execute goal org.liquibase:liquibase-maven-plugin:3.1.1:update (default-cli) on project bel-domain: Error setting up or running Liquibase:...
View ArticleRe : Error reading properties from liquibase.properties
Found the cause of my error!Somehow there was a space after my propertyurl: ${db.connectionURL} username: ${db.username} password: ${db.password} When I removed all spaces everything works!
View ArticleNull Pointer Exception when trying to acquire lock
I get the following error from time to time when migrationg a local postgresql database, but the error occurs much more frequently when connecting via a network to the postgres database running on a...
View ArticleRe : setting databaseChangeLog/LockTableName via Maven Plugin
hi nathan,yes I tried using changelogSchemaName but without any success.I also figured out that there may be a difference between using pom properties or including a properties file. I was trying to...
View ArticleRe : Error reading properties from liquibase.properties
Thanks for the followup. I'll see if I can add some better error handling and messages.Nathan
View ArticleRe : How to use onSqlOutput in formatted sql mode
Hi NathanWith onUpdateSql:TEST it works now as expected :-)Thx,Mike
View ArticleRe : Issues migrating from Liquibase 2.0 to 3.1
Any response to this question is greatly appreciated
View ArticleRe : Issues migrating from Liquibase 2.0 to 3.1
Do you know what command line the installer is using? Also, what is the full classpath?The problem seems to start at the liquibase main command line, and then somewhere along the line it seems to be...
View ArticleRe : Exception: Unknown Liquibase extension
Hello,sorry for my late response. But it's still not possible for me to make it work. I attached the example that I'm not able to make it work:liqui_test.zip: The refactoring file and the properties...
View ArticleH2 Remark support for columns and tables.
Hello,I stumbled across a lack of support for remarks (comments) when dealing with H2 databases. H2 supports the SQL standard COMMENT ON... syntax. I had a look in the source code and it seemed like...
View ArticleNew Extension: Liquibase Spatial
I would like to announce a new extension called Liquibase Spatial. It adds the ability to handle spatial indexes and geometry types in Derby, H2, MySQL, PostgreSQL and Oracle.A brief overview is...
View ArticleNon-existing referenced sql files doesn't report error
Hi allI have a project where I want to load some test data using the sqlFile tag.I use the relativeToChangelogFile="true" property on the tag.On some occassions I mistyped the path to the file. But...
View ArticleSQL Server example
Hi, I am new to liquibase and helping my release team integrated this tool. Has anyone got an end example of liquibase for sql server? Like simple steps to create a table or insert statement ?Thanks
View ArticleRe : SQL Server example
Do this: run Liquibase generateChangelog on an existing SQL Server database. This will generate examples for you based on your own database. It's pretty neat!The cool thing about Liquibase is that it...
View ArticleRe : SQL Server example
Hi Robert,Thank you for your reply. But would I generate a change log for the existing database ?Brijeshwhen I am run this java -jar liquibase.jar--driver: com.microsoft.sqlserver.jdbc.SQLServerDriver...
View ArticleRe : SQL Server example
What error are you getting and what version of liquibase are you using?Nathan
View ArticleRe : SQL Server example
Hi Nathan,I have created a liquibase.properties file and stored above properties in the same location as the Jar file andproperties file --driver: com.microsoft.sqlserver.jdbc.SQLServerDriver...
View ArticleRe : SQL Server example
Hi Nathan,1. Am I using the right class file ?2. Am I doing the right steps ?I am using the latest version of the Liquibase. Thanks again,Brijesh
View ArticleWhy DateType in SQL Server 2008 is converted as SMALLDATETIME?
HelloI had an issue when generating a statement in SQL Server 2008 database with DateType class, it is generating SMALLDATETIME instead of DATETIME.I checked the code (liquibase 3.1.1) and we have that...
View ArticleDefaultValueComputed isn't honored when column type is VARCHAR2
HiI'm running liquibase 3.1.1 on an Oracle DB. I have a change that creates a table with a column of type VARCHAR2(255) and it should have SYS_GUID as default value:...
View Article