Format
SDO_CSW_PROCESS.DeleteDomainInfo(
recordTypeId IN NUMBER,
propertyName IN VARCHAR2,
parameterName IN VARCHAR2);Description
Deletes domain information related to a record type.
Parameters
Usage Notes
For information about support for Catalog Services for the Web, see Catalog Services for the Web (CSW) Support.
Examples
The following example deletes domain information about the resultType parameter for a specified record type.
DECLARE
rtId NUMBER;
BEGIN
rtId :=
sdo_csw_process.getRecordTypeId('http://www.opengis.net/cat/csw', 'Record');
sdo_csw_process.deleteDomainInfo(rtId, null, 'GetRecords.resultType');
END;
/