73 DBMS_GOLDENGATE_ADM
The DBMS_GOLDENGATE_ADM
package provides subprograms to configure and manage Oracle GoldenGate conflict detection and resolution.
This chapter contains the following topics:
73.1 Using DBMS_GOLDENGATE_ADM
This section contains topics which relate to using the DBMS_GOLDENGATE_ADM
package.
73.1.1 DBMS_GOLDENGATE_ADM Overview
The DBMS_GOLDENGATE_ADM
package provides interfaces to configure automatic conflict detection and resolution in an Oracle GoldenGate configuration that replicates tables between Oracle databases.
When more than one replica of a table allows changes to the table, a conflict can occur when a change is made to the same row in two different databases at nearly the same time. Oracle GoldenGate replicates changes using row logical change records (LCRs). It detects a conflict by comparing the old values in the row LCR with the current values of the corresponding table row identified by the key columns. If any column value does not match, then there is a conflict. After a conflict is detected, Oracle GoldenGate can resolve the conflict by overwriting values in the row with some values from the row LCR, ignoring the values in the row LCR, or computing a delta to update the row values.
XStream inbound servers and outbound servers can be used in an XStream configuration in a multitenant container database (CDB). A CDB is an Oracle database that includes zero, one, or many user-created pluggable databases (PDBs).
Note:
Using XStream requires purchasing a license for the Oracle GoldenGate product.
See Also:
-
Oracle Database Concepts for more information about CDBs and PDBs
73.1.2 DBMS_GOLDENGATE_ADM Security Model
Security on this package can be controlled either by granting EXECUTE
on this package to selected users or roles or by granting EXECUTE_CATALOG_ROLE
to selected users or roles.
If subprograms in the package are run from within a stored procedure, then the user who runs the subprograms must be granted EXECUTE
privilege on the package directly. It cannot be granted through a role.
An Oracle GoldenGate administrator must be configured at each Oracle database in the table’s replication environment, and Oracle GoldenGate must be configured to replicate the table at each Oracle database. You can configure an Oracle GoldenGate administrator using the GRANT_ADMIN_PRIVILEGE
procedure in the DBMS_GOLDENGATE_ADM
package.
See Also:
The Oracle GoldenGate documentation for more information about Oracle GoldenGate replication and configuring an Oracle GoldenGate administrator
73.2 Summary of DBMS_GOLDENGATE_ADM Subprograms
Table 73-1 DBMS_GOLDENGATE_ADM Package Subprograms
Subprogram | Description |
---|---|
Configures Oracle GoldenGate automatic conflict detection and resolution for a table |
|
Adds a column group and configures Oracle GoldenGate automatic conflict detection and resolution for the column group |
|
Configures Oracle GoldenGate automatic conflict detection and delta resolution for the column |
|
Alters the Oracle GoldenGate automatic conflict detection and resolution for a table |
|
Alters a column group for Oracle GoldenGate automatic conflict detection and resolution |
|
Deletes a database object from the exclusion list for Oracle GoldenGate procedural replication |
|
Returns 1 if Oracle GoldenGate procedural replication is enabled and returns 0 if it is disabled |
|
Inserts a database object into the exclusion list for Oracle GoldenGate procedural replication |
|
Purges rows that were deleted before the specified timestamp from the tombstone table |
|
Removes Oracle GoldenGate automatic conflict detection and resolution for a table |
|
Removes a column group that was configured for Oracle GoldenGate automatic conflict detection and resolution |
|
Removes Oracle GoldenGate automatic conflict detection and delta resolution for the column |
Note:
All procedures commit unless specified otherwise.
73.2.1 ADD_AUTO_CDR Procedure
This procedure configures Oracle GoldenGate automatic conflict detection and resolution for a table.
The conflict detection and resolution configured by this procedure is based on the timestamp of the changes. The procedure adds one or more hidden columns of TIMESTAMP
type to the table, and each hidden column is counted against the limit of 1,000 columns for each table.
The procedure automatically places the columns in the table into a default column group and into an unconditional supplemental log group, excluding nonscalar columns. To create column groups that include a subset of the columns in the table, use the ADD_AUTO_CDR_COLUMN_GROUP
procedure in this package.
Syntax
DBMS_GOLDENGATE_ADM.ADD_AUTO_CDR( schema_name IN VARCHAR2, table_name IN VARCHAR2, resolution_granularity IN VARCHAR2 DEFAULT 'ROW', existing_data_timestamp IN TIMESTAMP WITH TIME ZONE DEFAULT NULL, tombstone_deletes IN BOOLEAN DEFAULT TRUE, fetchcols IN BOOLEAN DEFAULT TRUE, record_conflicts IN BOOLEAN DEFAULT FALSE, use_custom_handlers IN BINARY_INTEGER DEFAULT 0);
Parameters
Table 73-2 ADD_AUTO_CDR Procedure Parameters
Parameter | Description |
---|---|
|
The name of the table’s schema. |
|
The name of the table. |
|
|
|
Timestamp to assign to existing rows. If |
|
|
|
|
|
|
|
|
73.2.2 ADD_AUTO_CDR_COLUMN_GROUP Procedure
This procedure adds a column group to a table that is configured for Oracle GoldenGate automatic conflict detection and resolution.
For a table that has been configured for timestamp conflict detection and resolution, this procedure adds a column group that includes a specified subset of columns in the table. Any columns in the table that are not part of a column group remain in the default column group for the table.
When you add a column group to a table, conflict detection and resolution is performed on the columns in the column group separately from the other columns in the table. Column groups enable different databases to update different columns in the same row at nearly the same time without causing a conflict.
For example, a replicated table that contains employee information might have a salary column and a bonus column as well as other columns that identify the employee and a location column for the employees office number. Assume that one department in the company updates its database to change the employee's salary while another department updates its database to change the employee's location. If the salary and bonus columns are in a column group, these changes are applied to the replicated table in each database without requiring conflict resolution.
The procedure automatically places the columns in the column group into an unconditional supplemental log group, excluding nonscalar columns.
Before this procedure can be run on a table, the DBMS_GOLDENGATE_ADM.ADD_AUTO_CDR
procedure must be run in the table with ROW
specified for the resolution_granularity
parameter.
Syntax
DBMS_GOLDENGATE_ADM.ADD_AUTO_CDR_COLUMN_GROUP( schema_name IN VARCHAR2, table_name IN VARCHAR2, column_list IN VARCHAR2, column_group_name IN VARCHAR2 DEFAULT NULL, existing_data_timestamp IN TIMESTAMP WITH TIME ZONE DEFAULT NULL);
Parameters
Table 73-3 ADD_AUTO_CDR_COLUMN_GROUP Procedure Parameters
Parameter | Description |
---|---|
|
The name of the table’s schema. |
|
The name of the table. |
|
Group of columns for which the conflict detection and resolution is configured. Specify the columns in a comma-separated list. The same column cannot be in more than one column group. Also, the same column cannot be in a column group and specified in a delta resolution. |
|
The name of the column group. If |
|
The time value for the added |
73.2.3 ADD_AUTO_CDR_DELTA_RES Procedure
This procedure configures Oracle GoldenGate automatic conflict detection and delta resolution for the column.
The resolution method does not depend on a timestamp or an extra resolution column. With delta conflict resolution, the conflict is resolved by adding the difference between the new and old values in the LCR to the value in the table. For example, if a bank balance is updated at two sites concurrently, then the converged value accounts for all debits and credits. This resolution method is generally used for financial data such as an account balance.
The procedure automatically places the column into an unconditional supplemental log group.
Before this procedure can be run on a table, the DBMS_GOLDENGATE_ADM.ADD_AUTO_CDR
procedure must be run in the table with ROW
specified for the resolution_granularity
parameter.
Syntax
DBMS_GOLDENGATE_ADM.ADD_AUTO_CDR_DELTA_RES( schema_name IN VARCHAR2, table_name IN VARCHAR2, column_name IN VARCHAR2);
Parameters
Table 73-4 ADD_AUTO_CDR_DELTA_RES Procedure Parameters
Parameter | Description |
---|---|
|
The name of the table’s schema. |
|
The name of the table. |
|
The name of the column. The specified column must be a The same column cannot be in a column group. |
73.2.4 ALTER_AUTO_CDR Procedure
This procedure alters the Oracle GoldenGate automatic conflict detection and resolution for a table.
Syntax
DBMS_GOLDENGATE_ADM.ALTER_AUTO_CDR( schema_name IN VARCHAR2, table_name IN VARCHAR2, tombstone_deletes IN BOOLEAN DEFAULT NULL, fetchcols IN BOOLEAN DEFAULT NULL, record_conflicts IN BOOLEAN DEFAULT NULL, use_custom_handlers IN BINARY_INTEGER DEFAULT NULL);
Parameters
Table 73-5 ALTER_AUTO_CDR Procedure Parameters
Parameter | Description |
---|---|
|
The name of the table’s schema. |
|
The name of the table. |
|
|
|
|
|
|
|
|
73.2.5 ALTER_AUTO_CDR_COLUMN_GROUP Procedure
This procedure alters a column group for Oracle GoldenGate automatic conflict detection and resolution.
Syntax
DBMS_GOLDENGATE_ADM.ALTER_AUTO_CDR_COLUMN_GROUP( schema_name IN VARCHAR2, table_name IN VARCHAR2, column_group_name IN VARCHAR2, add_column_list IN VARCHAR2, remove_column_list IN VARCHAR2);
Parameters
Table 73-6 ALTER_AUTO_CDR_COLUMN_GROUP Procedure Parameters
Parameter | Description |
---|---|
|
The name of the table’s schema. |
|
The name of the table. |
|
The name of the column group. |
|
A comma-separated list of columns to add to the column group. |
|
A comma-separated list of columns to remove from the column group. |
73.2.6 DELETE_PROCREP_EXCLUSION_OBJ Procedure
This procedure deletes a database object from the exclusion list for Oracle GoldenGate procedural replication.
When a database object is on the exclusion list for Oracle GoldenGate procedural replication, execution of subprogram in the package is not replicated if the subprogram operates on the excluded object. For example, if hr.employees
is an excluded database object for the DBMS_REDEFINITION
package, then an execution of the DBMS_REDEFINITION.START_REDEF_TABLE
procedure on the hr.employees
table is not replicated.
Caution:
Run theDELETE_PROCREP_EXCLUSION_OBJ
procedure only under the direction of Oracle Support.
Syntax
DBMS_GOLDENGATE_ADM.DELETE_PROCREP_EXCLUSION_OBJ( package_owner IN VARCHAR2 DEFAULT NULL, package_name IN VARCHAR2 DEFAULT NULL, object_owner IN VARCHAR2 DEFAULT NULL, object_name IN VARCHAR2 DEFAULT NULL);
Parameters
Table 73-7 DELETE_PROCREP_EXCLUSION_OBJ Procedure Parameters
Parameter | Description |
---|---|
|
The owner of the package. |
|
The name of the package. |
|
The owner of the object. |
|
The name of the object. |
73.2.7 GG_PROCEDURE_REPLICATION_ON Function
This function returns 1 if Oracle GoldenGate procedural replication is enabled and returns 0 if it is disabled.
Syntax
DBMS_GOLDENGATE_ADM.GG_PROCEDURE_REPLICATION_ON RETURN NUMBER;
73.2.8 INSERT_PROCREP_EXCLUSION_OBJ Procedure
This procedure inserts a database object into the exclusion list for Oracle GoldenGate procedural replication.
When a database object is on the exclusion list for Oracle GoldenGate procedural replication, execution of subprogram in the package is not replicated if the subprogram operates on the excluded object. For example, if hr.employees
is an excluded database object for the DBMS_REDEFINITION
package, then an execution of the DBMS_REDEFINITION.START_REDEF_TABLE
procedure on the hr.employees
table is not replicated.
Caution:
Run theINSERT_PROCREP_EXCLUSION_OBJ
procedure only under the direction of Oracle Support.
Syntax
DBMS_GOLDENGATE_ADM.INSERT_PROCREP_EXCLUSION_OBJ( package_owner IN VARCHAR2 DEFAULT NULL, package_name IN VARCHAR2 DEFAULT NULL, object_owner IN VARCHAR2 DEFAULT NULL, object_name IN VARCHAR2 DEFAULT NULL);
Parameters
Table 73-8 INSERT_PROCREP_EXCLUSION_OBJ Procedure Parameters
Parameter | Description |
---|---|
|
The owner of the package. |
|
The name of the package. |
|
The owner of the object. |
|
The name of the object. |
73.2.9 PURGE_TOMBSTONES Procedure
This procedure purges rows that were deleted before the specified timestamp from the tombstone table.
Syntax
DBMS_GOLDENGATE_ADM.PURGE_TOMBSTONES( purge_timestamp IN TIMESTAMP WITH TIME ZONE);
Parameters
Table 73-9 PURGE_TOMBSTONES Procedure Parameters
Parameter | Description |
---|---|
|
The timestamp before which records are purged. |
73.2.10 REMOVE_AUTO_CDR Procedure
This procedure removes Oracle GoldenGate automatic conflict detection and resolution for a table.
Syntax
DBMS_GOLDENGATE_ADM.REMOVE_AUTO_CDR( schema_name IN VARCHAR2, table_name IN VARCHAR2);
Parameters
Table 73-10 REMOVE_AUTO_CDR Procedure Parameters
Parameter | Description |
---|---|
|
The name of the table’s schema. |
|
The name of the table. |
73.2.11 REMOVE_AUTO_CDR_COLUMN_GROUP Procedure
This procedure removes a column group that was configured for Oracle GoldenGate automatic conflict detection and resolution.
Syntax
DBMS_GOLDENGATE_ADM.REMOVE_AUTO_CDR_COLUMN_GROUP( schema_name IN VARCHAR2, table_name IN VARCHAR2, column_group_name IN VARCHAR2);
Parameters
Table 73-11 REMOVE_AUTO_CDR_COLUMN_GROUP Procedure Parameters
Parameter | Description |
---|---|
|
The name of the table’s schema. |
|
The name of the table. |
|
The name of the column group. |
73.2.12 REMOVE_AUTO_CDR_DELTA_RES Procedure
This procedure removes Oracle GoldenGate automatic conflict detection and delta resolution for the column.
Syntax
DBMS_GOLDENGATE_ADM.REMOVE_AUTO_CDR_DELTA_RES( schema_name IN VARCHAR2, table_name IN VARCHAR2, column_name IN VARCHAR2);
Parameters
Table 73-12 REMOVE_AUTO_CDR_DELTA_RES Procedure Parameters
Parameter | Description |
---|---|
|
The name of the table’s schema. |
|
The name of the table. |
|
The name of the column. |