15.10 SEM_APIS.ALTER_RDF_GRAPH

Format

SEM_APIS.ALTER_RDF_GRAPH(
     rdf_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 RDF graph. Currently, the only supported action is to move the graph to a specified tablespace.

Parameters

rdf_graph_name

Name of the RDF 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 AI 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

Examples

The following example moves the RDF graph named family to the tablespace named my_tbs.

EEXECUTE SEM_APIS.ALTER_RDF_GRAPH('family', 'MOVE',  'my_tbs');