Format
SDO_CSW_PROCESS.InsertRtMDUpdated( ns IN VARCHAR2, name IN VARCHAR2, updateTs IN TIMESTAMP);
Description
Inserts a notification that the metadata for a record type was updated in the database.
Parameters
Usage Notes
This procedure is used for WFS cache metadata synchronization.
For information about support for Catalog Services for the Web, see Catalog Services for the Web (CSW) Support.
Examples
The following example inserts a notification that the metadata for the Record
record type was updated in the database.
BEGIN SDO_CSW_PROCESS.insertRtMDUpdated('http://www.opengis.net/cat/csw', 'Record', sysdate); END;