SDO_NET.DELETE_PATH
Format
SDO_NET.DELETE_PATH(
network IN VARCHAR2,
path_id IN NUMBER);
Description
Deletes a path and all dependent network elements.
Parameters
network
Network name.
path_id
ID of the path to delete.
Usage Notes
This procedure deletes the specified path from the path table (described in Path Table), and it deletes any other network elements that depend on this path. For example, if the specified path has any subpaths, those subpaths are deleted also.
Examples
The following example deletes the path in the SDO_NET2 network whose path ID is 1.
SELECT SDO_NET.DELETE_PATH('SDO_NET2', 1);