SDO_NET.IS_LINK_IN_PATH
Format
SDO_NET.IS_LINK_IN_PATH(
network IN VARCHAR2,
path_id IN NUMBER,
link_id IN NUMBER,
) RETURN VARCHAR2;
Description
Returns the string TRUE if the specified link is in the specified path; returns the string FALSE if the specified link is not in the specified path.
Parameters
network
Network name.
path_id
ID number of the path.
link_id
ID number of the link.
Usage Notes
You can use this function to check if a specific link is included in a specific path.
Examples
The following example checks if the link with link ID 1 is in the path with path ID 1 in the network named SDO_NET1.
SELECT SDO_NET.IS_LINK_IN_PATH('SDO_NET1', 1, 1) FROM DUAL;
SDO_NET.IS_LINK_IN_PATH('SDO_NET1',1,1)
--------------------------------------------------------------------------------
TRUE