DBA Data[Home] [Help]

SYS.DBMS_APPLY_ADM dependencies on DBMS_UTILITY

Line 100: column_table IN dbms_utility.name_array,

96: -- column_list is a comma-separated list of columns, with no space
97: -- between columns.
98:
99: PROCEDURE set_key_columns(object_name IN VARCHAR2,
100: column_table IN dbms_utility.name_array,
101: apply_database_link IN VARCHAR2 := NULL);
102: -- Index for column_table is is 1-based, increasing, dense, and
103: -- terminated by a NULL.
104:

Line 106: column_table IN dbms_utility.quoted_name_array,

102: -- Index for column_table is is 1-based, increasing, dense, and
103: -- terminated by a NULL.
104:
105: PROCEDURE set_key_columns(object_name IN VARCHAR2,
106: column_table IN dbms_utility.quoted_name_array,
107: apply_database_link IN VARCHAR2 := NULL);
108: -- Index for column_table is is 1-based, increasing, dense, and
109: -- terminated by a NULL.
110:

Line 182: column_list IN dbms_utility.name_array,

178: PROCEDURE set_update_conflict_handler(
179: object_name IN VARCHAR2,
180: method_name IN VARCHAR2,
181: resolution_column IN VARCHAR2,
182: column_list IN dbms_utility.name_array,
183: apply_database_link IN VARCHAR2 DEFAULT NULL);
184: -- Adds a conflict handler to resolve update conflicts
185: -- object_name - the schema and name of the table, specified as
186: -- schema_name.object_name, for which the update conflict handler is being

Line 306: column_table IN DBMS_UTILITY.LNAME_ARRAY,

302: -- pointing to the remote database
303:
304: PROCEDURE compare_old_values (
305: object_name IN VARCHAR2,
306: column_table IN DBMS_UTILITY.LNAME_ARRAY,
307: operation IN VARCHAR2 DEFAULT 'UPDATE',
308: compare IN BOOLEAN DEFAULT TRUE,
309: apply_database_link IN VARCHAR2 DEFAULT NULL);
310: -- Indicates whether or not to compare old column with the current column

Line 326: attribute_table IN dbms_utility.name_array);

322:
323: PROCEDURE set_value_dependency (
324: dependency_name IN VARCHAR2,
325: object_name IN VARCHAR2,
326: attribute_table IN dbms_utility.name_array);
327:
328: -- Adds a set of columns to a virtual constraint.
329: -- If the constraint_name is null, an error is raised.
330: -- If the constraint_name is unknown, a new virtual constraint is created.

Line 476: column_table IN dbms_utility.lname_array,

472: object IN VARCHAR2 DEFAULT NULL,
473: operation_name IN VARCHAR2 DEFAULT NULL,
474: conflict_type IN VARCHAR2 DEFAULT NULL,
475: method_name IN VARCHAR2 DEFAULT NULL,
476: column_table IN dbms_utility.lname_array,
477: resolution_column IN VARCHAR2 DEFAULT NULL,
478: source_object IN VARCHAR2 DEFAULT NULL);
479:
480: ----------------------------------------------------------------------------