Format
SDO_CSW_PROCESS.DeletePluginMap( rtnsUrl IN VARCHAR2, rtName IN VARCHAR2);
Description
Unregisters a plugin for processing and extracting non-GML spatial content for a record type.
Parameters
Usage Notes
To register a plugin, which is a user-defined implementation of the extractSDO
function, use the SDO_CSW_PROCESS.InsertPluginMap procedure.
For information about creating and using the extractSDO
function, see Spatial Path Extractor Function (extractSDO).
For information about support for Catalog Services for the Web, see Catalog Services for the Web (CSW) Support.
Examples
The following example unregisters a plugin.
BEGIN SDO_CSW_PROCESS.deletePluginMap('http://www.opengis.net/cat/csw', 'Record'); END; /