Format
SDO_WFS_PROCESS.DropFeatureTypes(
ftnsUrl IN VARCHAR2);Description
Deletes all feature types in a specified namespace.
Usage Notes
To drop a single feature type in a namespace, use the SDO_WFS_PROCESS.DropFeatureType procedure.
For information about support for Web Feature Services, see Web Feature Service (WFS) Support.
Examples
The following example deletes all feature types in a specified namespace.
BEGIN
SDO_WFS_PROCESS.dropFeatureTypes('http://www.example.com/myns');
END;
/