New Webinar: Govern roles, shares, and data movement in Snowflake

Learn how to govern Snowflake roles, shares, and data movement without slowing delivery. Join our live webinar on controlling drift, permissions, and audit readiness.

How do I enable operation reports?

Last updated: September 2, 2025

In Liquibase 4.29.0 and later, operation reports are enabled by default.

In older versions, operation reports are disabled by default. Follow this guide to enable them.

Procedure

1

Set the --license-key property using your Liquibase Pro license key.

2

Choose how often to generate reports. You can either:

Always generate reports:

  • liquibase.properties file: liquibase.reports.enabled=true

  • Environment variable: LIQUIBASE_REPORTS_ENABLED=true

Then, when you run a supported command, Liquibase always generates a report

Selectively generate reports at runtime:

  • Command line: liquibase --reports-enabled=true <command>

  • JVM system property:JAVA_OPTS="-Dliquibase.reports.enabled=true" liquibase <command>

Note: To enable or disable only a specific kind of report, such as the drift report, you can set the liquibase.command.<cmdName>.reportEnabled parameter. See the pages linked in the Report types section.