Is there a way to specify multiple SQL Server 2008

2019-08-29 05:33发布

I currently have a batch file with the following contents to generate the Liquibase change log from my already existing database's tables and stored procedures:

@echo off
liquibase --changeLogFile=com/example/db.changelog1.xml --defaultSchemaName="schExampleSchema1" generateChangeLog
liquibase --changeLogFile=com/example/db.changelog2.xml --defaultSchemaName="schExampleSchema2" generateChangeLog
exit

Instead of having separate files for each schema is their a way for the Liquibase 'generateChangeLog' command to generate all change log information for more than 1 schema in a single command.

I already tried doing a comma separated list but that did not work.

1条回答
冷血范
2楼-- · 2019-08-29 06:07

No, unfortunately generateChangeLog supports only one schema at a time currently.

查看更多
登录 后发表回答