代码之家  ›  专栏  ›  技术社区  ›  Mad Scientist

以updateSql模式分解databasechangelog表

  •  0
  • Mad Scientist  · 技术社区  · 6 年前

     .\liquibase --url=offline:mssql? `
    --changeLogFile="C:\Users\Ferid\Documents\Box Sync\PRIVATE_Ferid\liquibase-3.5.5-bin\Changelog.xml" `
    --outputFile="C:\Users\Ferid\Documents\Box Sync\PRIVATE_Ferid\liquibase-3.5.5-bin\all.sql" `
    updatesql
    

    update 语句而不是 updatesql

    2 回复  |  直到 6 年前
        1
  •  2
  •   Mad Scientist    6 年前

    有一种方法可以通过使用 outputLiquibaseSql url中的参数

    .\liquibase --url=offline:mssql?outputLiquibaseSql=true `
    --changeLogFile="C:\Users\Ferid\Documents\Box Sync\PRIVATE_Ferid\liquibase-3.5.5-bin\Changelog.xml" `
    --outputFile="C:\Users\Ferid\Documents\Box Sync\PRIVATE_Ferid\liquibase-3.5.5-bin\all.sql" `
    updatesql
    

        2
  •  1
  •   SteveDonie    6 年前

    您需要将正在使用的URL更改为非脱机版本。