15.66 SEM_APIS.DROP_RDF_GRAPH
Format
SEM_APIS.DROP_RDF_GRAPH( rdf_graph_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.
Parameters
Usage Notes
This procedure deletes the RDF graph from the SEM_MODEL$ view, which is described in RDF Graphs.
This procedure is the only supported way to delete an RDF graph. Do not use SQL DELETE statements with the SEM_MODEL$ view.
Only the creator of the RDF graph can delete the graph.
To truncate an RDF graph instead of deleting it, use the SEM_APIS.TRUNCATE_RDF_GRAPH procedure.
For information about RDF network types and options, see RDF Networks.
Examples
The following example drops the RDF graph named articles
.
EXECUTE SEM_APIS.DROP_RDF_GRAPH('articles');
Parent topic: SEM_APIS Package Subprograms