15.127 SEM_APIS.MOVE_SEM_NETWORK_DATA

Format

SEM_APIS.MOVE_SEM_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);

Note:

This subprogram will be deprecated in a future release. It is recommended that you use the SEM_APIS.MOVE_RDF_NETWORK_DATA subprogram instead.

Description

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

Parameters

dest_schema

The staging schema to which the semantic 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 semantic network for the move operation. (See Table 1-2.)

network_name

Name of the source semantic 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 semantic network types and options, see RDF Networks.

Examples

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

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