Hi I am using Liquibase (www.liquibase.org) with SQL Server 2008 project to manage database migration/changes. While using the below liquibase command, I am getting an error "Unexpected error running Liquibase: Premature end of file."
liquibase udpate
PFB my liquibase.properties file:
driver=com.microsoft.sqlserver.jdbc.SQLServerDriver
classpath=C:\\Program Files (x86)\\Microsoft SQL Server 2005 JDBC Driver\\sqljdbc_1.2\\enu\\sqljdbc4.jar
changeLogFile=D:\\Temp\\ChangeLog.xml
url=jdbc:sqlserver://PCNAME\\SQLEXPRESS2012:1433;databaseName=TestDB
username=username
password=password
Can you please suggest me how to get rid of this premature end of file error?