15.126 SEM_APIS.MOVE_RDF_NETWORK_DATA

Format

SEM_APIS.MOVE_RDF_NETWORK_DATA(
     dest_schema    IN DBMS_ID,
     dest_tbs_name  IN DBMS_ID DEFAULT NULL,
     degree         IN INTEGER DEFAULT NULL,
     options        IN VARCHAR2 DEFAULT NULL,
     network_owner  IN VARCHAR2 DEFAULT NULL,
     network_name   IN VARCHAR2 DEFAULT NULL);

Description

Moves RDF network data from a source RDF network to a destination (staging) schema.

Parameters

dest_schema

The staging schema to which the RDF network data will be moved.

dest_tbs_name

The tablespace to use for objects created in the destination (staging) schema. If null, the default tablespace for the destination schema will be used.

degree

Degree of parallelism to use for any SQL insert or index building operations. The default is no parallel execution.

options

(Reserved for future use.)

network_owner

Owner of the source RDF network for the move operation. (See Table 1-2.)

network_name

Name of the source RDF network for the move operation. (See Table 1-2.)

Usage Notes

You must have DBA privileges to call this procedure.

For more information and examples, see Moving, Restoring, and Appending an RDF Network.

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

Examples

The following example moves an RDF network from the MYNET RDF network owned by RDFADMIN to the RDFEXPIMPU staging schema>

EXECUTE sem_apis.move_rdf_network_data(dest_schema=>'RDFEXPIMPU',network_owner=>'RDFADMIN',network_name=>'MYNET');