DBA Data[Home] [Help]

SYS.DBMS_SQLPATCH dependencies on XMLTYPE

Line 36: FUNCTION sql_registry_state RETURN XMLType;

32: -- Returns a hash string representing the current state of the SQL
33: -- registry (i.e. a list of the BLRs installed successfully or not, and
34: -- the current bundle ID for any bundles). This is used to compare the
35: -- SQL registry upon PDB plug in
36: FUNCTION sql_registry_state RETURN XMLType;
37:
38: -- Wrapper around queryable inventory's get_pending_activity function.
39: -- Returns an XML string representing the state of SQL patches installed
40: -- in the opatch inventory.

Line 41: FUNCTION opatch_registry_state RETURN XMLType;

37:
38: -- Wrapper around queryable inventory's get_pending_activity function.
39: -- Returns an XML string representing the state of SQL patches installed
40: -- in the opatch inventory.
41: FUNCTION opatch_registry_state RETURN XMLType;
42:
43: -- Wrapper around queryable inventory's get_opatch_lsinventory function.
44: -- Returns an XML string consisting of the entire inventory. This function
45: -- caches the result for performance.

Line 46: FUNCTION get_opatch_lsinventory RETURN XMLType;

42:
43: -- Wrapper around queryable inventory's get_opatch_lsinventory function.
44: -- Returns an XML string consisting of the entire inventory. This function
45: -- caches the result for performance.
46: FUNCTION get_opatch_lsinventory RETURN XMLType;
47:
48: -- Performs session initialization. Must be called before patch_initialize.
49: PROCEDURE session_initialize(p_oh IN VARCHAR2,
50: p_force IN BOOLEAN := FALSE,

Line 65: p_patch_descriptor IN XMLType := NULL,

61: -- procedure is called directly by datapatch.
62: PROCEDURE set_patch_metadata(p_patch_id IN NUMBER,
63: p_patch_uid IN NUMBER,
64: p_superseding IN BOOLEAN,
65: p_patch_descriptor IN XMLType := NULL,
66: p_patch_directory IN BLOB := NULL);
67:
68: -- Removes all saved state from the dbms_sqlptach_state table.
69: PROCEDURE clear_state;