liquibase – 如何生成changlogFile in.sql格式?

前端之家收集整理的这篇文章主要介绍了liquibase – 如何生成changlogFile in.sql格式?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我确实运行此查询生成.sql格式的changelogFile
liquibase --driver=com.MysqL.jdbc.Driver 
          --classpath=MysqL-connector-java-5.1.24-bin.jar 
          --changeLogFile=test_diff.sql 
          --url="jdbc:MysqL://localhost/provision"
          --username=root 
          --password=** 
           diffChangeLog 
          --referenceUrl=jdbc:MysqL://localhost/provision_old 
          --referenceUsername=root 
          --referencePassword=***

我得到以下错误

Liquibase Update Failed: No serializer associated with the filename or extension 'sql'
SEVERE 5/2/13 12:50 PM:liquibase: No serializer associated with the filename or extension 'sql'
java.lang.RuntimeException: No serializer associated with the filename or extension 'sql'

是否可以在.sql格式中生成changelogfile?

解决方法

From the manual

diffChangeLog Writes Change Log XML to update the base database to the target database to standard out

(强调我的)

所以–changeLogFile指定XML输出名称,而不是sql输出.

您必须首先创建XML.之后,您可以通过例如生成sql脚本使用updatesql命令将其应用于空数据库.然后Liquibase将从中创建一个sql脚本.

原文链接:https://www.f2er.com/mssql/78384.html

猜你在找的MsSQL相关文章