...
Leaving Revert to Baseline ID
blank will create an artifact that when deployed will bring the target database DDL to the current DDL of the Source Database.
Supported object types are:
- Package
- Package Body
- Type
- Type Body
- Function
- Trigger
- Procedure
- Table
- Index
- View
- Constraint
- Sequence
- Private Synonym
- Materialized view
- Materialized view log
- Grants on supported objects
Environment/Instance Properties
...
Input Name | Input Code | Required | Description |
---|---|---|---|
Column Drop Action | FDORA_COL_DROP_ACTION | No | Determines what action to take for "dropping" columns. Can be set to SET UNUSED or DROP. Defaults to SET UNUSED. |
Revert to Baseline ID | FDORA_REVERT_TO_BASELINE_ID | No | Numeric ID of the baseline to revert an environment to. Leave blank to create a new baseline. |
Table Renames | FDORA_TABLE_RENAMES | No | Table rename string. The format is NEW_OWNER.NEW_TABLE_NAME=OLD_OWNER.OLD_TABLE_NAME NOTE*** Multiple table renames can be listed by comma separating them on the input. |
Index Renames | FDORA_INDEX_RENAMES | No | Index rename string. The format is NEW_OWNER.NEW_INDEX_NAME=OLD_OWNER.OLD_INDEX_NAME NOTE*** Multiple index renames can be listed by comma separating them on the input. |
Column Renames | FDORA_COLUMN_RENAMES | No | Column rename string. The format is NEW_OWNER.NEW_TABLE_NAME.NEW_COLUMN_NAME=OLD_OWNER.OLD_TABLE_NAME.OLD_COLUMN_NAME NOTE*** Multiple column renames can be listed by comma separating them on the input. |
Trigger Renames | FDORA_TRIGGER_RENAMES | No | Trigger rename string. The format is NEW_OWNER.NEW_TRIGGER_NAME=OLD_OWNER.OLD_TRIGGER_NAME NOTE*** Multiple trigger renames can be listed by comma separating them on the input. |
Constraint Renames | FDORA_CONSTRAINT_RENAMES | No | Constraint rename string. The format is NEW_OWNER.NEW_TABLE_NAME.NEW_CONSTRAINT_NAME=OLD_OWNER.OLD_TABLE_NAME.OLD_CONSTRAINT_NAME NOTE*** Multiple constraint renames can be listed by comma separating them on the input. |
Synonym Renames | FDORA_SYNONYM_RENAMES | No | Synonym rename string. The format is NEW_OWNER.NEW_SYNONYM_NAME=OLD_OWNER.OLD_SYNONYM_NAME NOTE*** Multiple synonym renames can be listed by comma separating them on the input. |
Sequence Renames | FDORA_SEQUENCE_RENAMES | No | Sequence rename string. The format is NEW_OWNER.NEW_SEQUENCE_NAME=OLD_OWNER.OLD_SEQUENCE_NAME NOTE*** Multiple sequence renames can be listed by comma separating them on the input. |
View Renames | FDORA_VIEW_RENAMES | No | View rename string. The format is NEW_OWNER.NEW_VIEW_NAME=OLD_OWNER.OLD_VIEW_NAME NOTE*** Multiple view renames can be listed by comma separating them on the input. |
Outputs
Output Name | Required | Description |
---|---|---|
| No | Outputs the BaseLine ID which was built. |
FDORA_OUT_BL_TABLE_COUNT | No | Count of tables stored in the baseline. |
FDORA_OUT_BL_INDEX_COUNT | No | Count of indexes stored in the baseline. |
FDORA_OUT_BL_CONSTRAINT_COUNT | No | Count of constraints stored in the baseline. |
FDORA_OUT_BL_SEQUENCE_COUNT | No | Count of sequences stored in the baseline. |
FDORA_OUT_BL_PROCEDURES_COUNT | No | Count of procedures stored in the baseline. |
FDORA_OUT_BL_VIEWS_COUNT | No | Count of views stored in the baseline. |
FDORA_OUT_BL_SYNONYMS_COUNT | No | Count of synonyms stored in the baseline. |
FDORA_OUT_BL_MVIEW_COUNT | No | Count of materialized views stored in the baseline. |
FDORA_OUT_BL_MVIEW_LOG_COUNT | No | Count of materialized view logs stored in the baseline. |
FDORA_OUT_BL_PRIVILEGES_COUNT | No | Count of privileges stored in the baseline. |
Artifacts
This operation produces artifacts that will be stored in the artifacts repository. This artifact is an empty file whose name is used to select a revision from the DDL Repository.
...
This operation will execute on any one of the selected endpoints and will be random in the determination of which one.
Special Considerations
[Delete section if not needed]
Describe any dependencies between properties that may exist or anything that that isn’t really covered above but is relevant to this operationFor renames, the old_owner must be the same as the new_owner.