37.14 SDO_WFS_PROCESS.RevokeFeatureTypeFromUser
Format
SDO_WFS_PROCESS.RevokeFeatureTypeFromUser( ftnsUrl IN VARCHAR2, ftName IN VARCHAR2, userName IN VARCHAR2);
Description
Revokes access to a feature type from a database user.
Parameters
Usage Notes
To grant access to a feature type to a database user, use the SDO_WFS_PROCESS.GrantFeatureTypeToUser procedure.
For information about support for Web Feature Services, see Web Feature Service (WFS) Support.
Examples
The following example revokes access to the COLA feature type from user SMITH.
BEGIN
SDO_WFS_PROCESS.RevokeFeatureTypeFromUser('http://www.example.com/myns','COLA',
'SMITH');
END;
/Parent topic: SDO_WFS_PROCESS Package (WFS Processing)