SDO_NET.DELETE_SUBPATH
Format
SDO_NET.DELETE_SUBPATH(
network IN VARCHAR2,
subpath_id IN NUMBER);
Description
Deletes a subpath.
Parameters
network
Network name.
subpath_id
ID of the subpath to delete.
Usage Notes
This procedure deletes the specified subpath from the path table (described in Path Table). It does not delete any other network elements, because no other elements depend on a subpath definition.
Examples
The following example deletes the subpath in the SDO_NET2 network whose subpath ID is 17.
SELECT SDO_NET.DELETE_SUBPATH('SDO_NET2', 17);