6.86 SDO_NET.IS_LOGICAL
Format
SDO_NET.IS_LOGICAL( network IN VARCHAR2 ) RETURN VARCHAR2;
Description
Returns the string TRUE if the network is a logical network; returns the string FALSE if the network is not a logical network.
Usage Notes
A network can be a spatial network or a logical network, as explained in Network Data Model Concepts.
Examples
The following example checks if the network named ROADS_NETWORK is a logical network.
SELECT SDO_NET.IS_LOGICAL('ROADS_NETWORK') FROM DUAL;
SDO_NET.IS_LOGICAL('ROADS_NETWORK')
--------------------------------------------------------------------------------
FALSE Parent topic: SDO_NET Package Subprograms