Property Name | Description |
---|
oracleEphemeralSourceName | [Optional] Defines a source name for an Oracle source PDB in the event Liquibase has not been granted the necessary permissions to query for this name. Necessary permissions are included below. If these grants are not present, oracleEphemeralSourceName will be required. Multi-schema projects: GRANT SELECT ANY DICTIONARY TO DATICAL_ROLE; Single schema projects Liquibase requires either: GRANT SELECT ANY DICTIONARY TO DATICAL_SCHEMA_OWNER_ROLE;
Or GRANT SELECT ON DBA_SYS_PRIVS TO DATICAL_SCHEMA_OWNER_ROLE; , GRANT SELECT ON DBA_ROLE_PRIVS TO DATICAL_SCHEMA_OWNER_ROLE; , and GRANT SELECT ON DBA_COL_PRIVS TO DATICAL_SCHEMA_OWNER_ROLE;
See Roles and Permissions for Liquibase Enterprise on Oracle Database for further information on permissions.
Property Validation: Source name should up to 30 characters long, contain no spaces [ ], slashes [/] and semicolons [;], and cannot begin with a number. |
oracleEphemeralCopyName | [Optional] defines Defines a name for an Oracle copy PDB if not provided we will try to get a source PDB name from a DB and add _eph postfix to it, so if original bucket name was in the event the default name is not desired. Default PDB name for the ephemeral copy will be source PDB name with _eph postfix. For example, if source name is bucket_01 , the copied bucket name will be bucket_01_eph validation - it . Property Validation: Copy name should up to 30 characters long, contain no spaces [ ], slashes [/] and semicolons [;], also it can’t start from and cannot begin with a number. |
oracleEphemeralDatabaseLinkName | [Optional] defines a name for a database link which is used in BackupRestoreOracleEphemeralExternalPdb if not provided a default name is used which is liquibase_db_link validation - it should up to 128 characters long, contain no spaces [ ], slashes [/] and semicolons [;], also it can’t start from a number
|
oracleEphemeralCopyWithData | [Optional] By default we do not copy databases with data. If you would like to copy both the structure and data, you will use this property. a boolean flag to turn on making a copy with data by default it is false and we make a copy of the PDB without data (in other words we copy tables, but do not copy their content, the only table for which we copy content is our tracking DATABASECHANGELOG table)
|
oracleEphemeralSkipFinalDeploy | [Optional] This property allows you to: package run SQL rules create the ephemeral database copy package changes onto the ephemeral database drop the ephemeral database And then SKIP the final deploy of the ephemeral database changes to the dev database.
a boolean flag to turn off final deploy during packager to be able to skip final deployment after packaging, so our customer can package files and skip deployment to any DB by default is false and we make a final deploy, which is a default packager behaviour
|