34.7 SDO_WCS.UnpublishCoverage

Format

SDO_WCS.UnpublishCoverage(
     coverage_id  IN VARCHAR2);

Description

Unpublishes a coverage.

Parameters

coverage_id

A string specifying a coverage ID from the list of coverages of a GetCapabilities response.

Usage Notes

A GetCapabilities Operation (WCS) response contains the list of all coverage ID from the given WCS server instance. After this procedure runs, the specified coverage ID will not appear in a GetCapabilities response.

For information about support for WCS, see Web Coverage Service (WCS) Support.

Examples

The following example unpublishes the coverage with coverage Id C0001.

DECLARE
BEGIN
  SDO_WCS.UnpublishCoverage(‘C0001’);
END;
/