15.67 SEM_APIS.DROP_RDF_GRAPH_COLLECTION

Format

SEM_APIS.DROP_RDF_GRAPH_COLLECTION(
     rdf_graph_collection_name IN VARCHAR2,
     options                   IN VARCHAR2 DEFAULT NULL,
     network_owner             IN VARCHAR2 DEFAULT NULL,
     network_name              IN VARCHAR2 DEFAULT NULL);

Description

Drops (deletes) an RDF graph collection.

Parameters

rdf_graph_collection_name

Name of the RDF graph collection to be deleted.

options

(Reserved for future use.)

network_owner

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

network_name

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

Usage Notes

You can use this procedure to delete an RDF graph collection that you created using the SEM_APIS.CREATE_RDF_GRAPH_COLLECTION procedure. An RDF graph collection is deleted automatically if any of its component graphs, rulebases, or inferred graph are deleted.

To use this procedure, you must be the owner of the specified RDF graph collection.

For an explanation of RDF graph collections, including usage information, see RDF Graph Collections.

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

Examples

The following example deletes an RDF graph collection named VM1.

EXECUTE sem_apis.drop_rdf_graph_collection('VM1');