15.8 SEM_APIS.ALTER_INFERRED_GRAPH

Format

SEM_APIS.ALTER_INFERRED_GRAPH(
     inferred_graph_name IN VARCHAR2, 
     command             IN VARCHAR2, 
     tablespace_name     IN VARCHAR2, 
     parallel            IN NUMBER(38) DEFAULT NULL,
     network_owner       IN VARCHAR2 DEFAULT NULL,
     network_name        IN VARCHAR2 DEFAULT NULL);

Description

Alters an inferred graph (rules index). Currently, the only action supported is to move the inferred graph to a specified tablespace.

Parameters

inferred_graph_name

Name of the inferred graph.

command

Must be the string MOVE.

tablespace_name

Name of the destination tablespace.

parallel

Degree of parallelism to be associated with the operation. For more information about parallel execution, see Oracle Database VLDB and Partitioning Guide.

network_owner

Owner of the RDF network. (See Table 1-2.)

network_name

Name of the RDF network. (See Table 1-2.)

Usage Notes

For an explanation of inferred graphs, see Entailments (Rules Indexes).

For information about RDF network types and options, see RDF Networks.

Examples

The following example moves the inferred graph named rdfs_rix_family to the tablespace named my_tbs.

EEXECUTE SEM_APIS.ALTER_INFERRED_GRAPH('rdfs_rix_family', 'MOVE',  'my_tbs');