Network Data Model Graph Overview
OWNER
VARCHAR2(32)
Owner of the network (ALL_SDO_NETWORK_METADATA view only)
NETWORK
VARCHAR2(24)
Name of the network
NETWORK_ID
NUMBER
ID number of the network; assigned by Spatial and Graph
NETWORK_CATEGORY
VARCHAR2(12)
Contains SPATIAL
if the network nodes and links are associated with spatial geometries; contains LOGICAL
if the network nodes and links are not associated with spatial geometries. A value of LOGICAL
causes the Network Data Model Graph PL/SQL and Java APIs to ignore any spatial attributes of nodes, links, and paths.
GEOMETRY_TYPE
VARCHAR2(24)
If NETWORK_CATEGORY
is SPATI
AL
, contains a value indicating the geometry type of nodes and links: SDO_GEOMETRY
for non-LRS SDO_GEOMETRY objects, LRS_GEOMETRY
for LRS SDO_GEOMETRY objects, TOPO_GEOMETRY
for SDO_TOPO_GEOMETRY objects.
NETWORK_TYPE
VARCHAR2(24)
User-defined string to identify the network type.
NO_OF_HIERARCHY_LEVELS
NUMBER
Number of levels in the network hierarchy. Contains 1 if there is no hierarchy. (See Network Hierarchy for information about network hierarchy.)
NO_OF_PARTITIONS
NUMBER
(Not currently used)
LRS_TABLE_NAME
VARCHAR2(32)
If GEOMETRY_TYPE
is SDO_GEOMETRY
, contains the name of the table containing geometries associated with nodes.
LRS_GEOM_COLUMN
VARCHAR2(32)
If LRS_TABLE_NAME
contains a table name, identifies the geometry column in that table.
NODE_TABLE_NAME
VARCHAR2(32)
If GEOMETRY_TYPE
is SDO_GEOMETRY
, contains the name of the table containing geometries associated with nodes. (The node table is described in Node Table.)
NODE_GEOM_COLUMN
VARCHAR2(32)
If NODE_TABLE_NAME
contains a table name, identifies the geometry column in that table.
NODE_COST_COLUMN
VARCHAR2(1024)
If NODE_TABLE_NAME
contains a table name, identifies the cost column in that table, or a PL/SQL function to compute the cost value.
NODE_PARTITION_COLUMN
VARCHAR2(32)
(Not currently used).
NODE_DURATION_COLUMN
VARCHAR2(32)
If NODE_TABLE_NAME
contains a table name, identifies the optional duration column in that table. This column can contain a numeric value that has any user-defined significance, such as a number of minutes associated with the node.
LINK_TABLE_NAME
VARCHAR2(32)
If GEOMETRY_TYPE
is SDO_GEOMETRY
, contains the name of the table containing geometries associated with links. (The link table is described in Link Table.)
LINK_GEOM_COLUMN
VARCHAR2(32)
If LINK_TABLE_NAME
contains a table name, identifies the geometry column in that table.
LINK_DIRECTION
VARCHAR2(12)
Contains a value indicating the type for all links in the network: UNDIRECTED
or DIRECTED
.
LINK_COST_COLUMN
VARCHAR2(1024)
If LINK_TABLE_NAME
contains a table name, identifies the optional numeric column containing a cost value for each link, or a PL/SQL function to compute the cost value.
LINK_PARTITION_COLUMN
VARCHAR2(32)
(Not currently used)
LINK_DURATION_COLUMN
VARCHAR2(32)
If LINK_TABLE_NAME
contains a table name, identifies the optional duration column in that table. This column can contain a numeric value that has any user-defined significance, such as a number of minutes associated with the link.
PATH_TABLE_NAME
VARCHAR2(32)
Contains the name of an optional table containing information about paths. (The path table is described in Path Table.)
PATH_GEOM_COLUMN
VARCHAR2(32)
If PATH_TABLE_NAME
is associated with a spatial network, identifies the geometry column in that table.
PATH_LINK_TABLE_NAME
VARCHAR2(32)
Contains the name of an optional table containing information about links for each path. (The path-link table is described in Path-Link Table.)
SUBPATH_TABLE_NAME
VARCHAR2(32)
Contains the name of an optional table containing information about subpaths. (The subpath table is described in Subpath Table.)
SUBPATH_GEOM_COLUMN
VARCHAR2(32)
If SUBPATH_TABLE_NAME
is associated with a spatial network, identifies the geometry column in that table.
PARTITION_TABLE_NAME
VARCHAR2(32)
For a partitioned network: the name of the partition table. (The partition table is described in Partition Table.
PARTITION_BLOB_TABLE_NAME
VARCHAR2(32)
For a partitioned network for which any partition BLOBs have been generated: the name of the partition BLOB table. (The partition BLOB table is described in Partition BLOB Table.
COMPONENT_TABLE_NAME
VARCHAR2(32)
The name of the table containing information about precomputed connected components, as explained in Precomputed Analysis Results. (The connected component table is described in Connected Component Table.)
NODE_LEVEL_TABLE_NAME
VARCHAR2(32)
The name of the table containing information about node levels in a multilevel network. Specify this table as the node_level_table_name
parameter with the SDO_NET.GENERATE_NODE_LEVELS procedure.
TOPOLOGY
VARCHAR2(32)
For a spatial network containing SDO_TOPO_GEOMETRY objects (creating using the SDO_NET.CREATE_TOPO_NETWORK procedure), contains the name of the topology.
USER_DEFINED_DATA
VARCHAR2(1)
Contains Y if the network contains user-defined data; contains N if the network does not contain user-defined data.
EXTERNAL_REFERENCES
VARCHAR2(1)
(Not currently used)
CHILD_NETWORK
VARCHAR2(32)
Name of the child network, if a network hierarchy is involved.
HIERARCHY_TABLE_NAME
VARCHAR2(32)
Name of the hierarchy table, if a network hierarchy is involved.