DBA Data[Home] [Help]

XDB.DBMS_RESCONFIG dependencies on XMLTYPE

Line 26: RETURN sys.XMLType;

22: -- RETURNS -
23: -- Returns contents of resource configuration.
24: ---------------------------------------------
25: FUNCTION getResConfig(respath IN VARCHAR2, pos IN PLS_INTEGER)
26: RETURN sys.XMLType;
27:
28: ---------------------------------------------
29: -- PROCEDURE - addResConfig
30: -- Inserts the resource configuration specified by rcpath at the given position in the target resource's configuration list.

Line 96: function getListeners(path IN VARCHAR2) return SYS.XMLType;

92:
93: -- PARAMETERS
94: -- path - absolute path of the target resource.
95: ---------------------------------------------
96: function getListeners(path IN VARCHAR2) return SYS.XMLType;
97:
98: ---------------------------------------------
99: -- FUNCTION getRepositoryResConfig
100:

Line 106: Function getRepositoryResConfig(pos IN PLS_INTEGER) return SYS.XMLType;

102: -- Returns the resource configuration at the specified position of the repository's configuration list. Users must have the required read privilege on the requested resource configuration; otherwise, an error is returned.
103: -- Parameters:
104: -- pos - index of element to return. An exception is raised if the index is out of range (i.e., pos < 0 or pos >= the size of the repository's configuration list).
105: ---------------------------------------------
106: Function getRepositoryResConfig(pos IN PLS_INTEGER) return SYS.XMLType;
107:
108: ---------------------------------------------
109: -- FUNCTION getRepositoryResConfigPaths
110: