grace <<environment>> dbm-update-count-sql <<number>> <<filename>> --contexts=<<contexts>> --defaultSchema=<<defaultSchema>> --dataSource=<<dataSource>>
dbm-update-count-sql
Purpose
Writes the SQL that will partially update a database to STDOUT or a file.
Description
Generates SQL for the specifed number of changeSets from the changelog. Executes against the database configured in application.[yml|groovy]
for the current environment (defaults to dev
).
This is useful for inspecting the generated SQL before running an update, or to generate SQL which can be tuned before running manually.
Usage:
Required arguments:
-
number
- The number of un-run changesets to run
Optional arguments:
-
filename
- The path to the output file to write to. If not specified output is written to the console -
contexts
- A comma-delimited list of context names. If specified, only changesets tagged with one of the context names will be run -
defaultSchema
- The default schema name to use -
dataSource
- if provided will run the script for the specified dataSource. Not needed for the default dataSource.
Note that the contexts , defaultSchema , and dataSource parameter name and value must be quoted if executed in Windows, e.g.
|
grace dbm-update-count-sql "--contexts=<<contexts>>" "--defaultSchema=<<defaultSchema>>" "--dataSource=<<dataSource>>"
For the dataSource parameter, if the data source is configured as reports underneath the dataSources key in application.[yml|groovy] , the value should be reports .
|
--dataSource=reports