Format
SDO_CSW_PROCESS.DeleteRecordViewMap( recordTypeNs IN VARCHAR2, viewSrcName IN VARCHAR2, targetTypeName IN VARCHAR2);
Description
Deletes information related to record view transformation.
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 information related to record view transformation from source record type BriefRecord
and destination record type Record
.
BEGIN SDO_CSW_PROCESS.deleteRecordViewMap('http://www.opengis.net/cat/csw', 'BriefRecord', 'Record'); END; /