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