Name
DB.DBA.RDF_GRAPH_GROUP_INS — Inserts graph into group.
Synopsis
DB.DBA.RDF_GRAPH_GROUP_INS
(
|
in group_name varchar , |
in
graph_uri
varchar
) ; |
Description
Inserts graph into a given group.
Parameters
group_name
The name of the graph group
graph_uri
graph uri IRI string or IRI_ID
Return Types
The return value is not specified and may be changed in future versions.
Examples
Example 24.275. Simple example
SQL>DB.DBA.RDF_GRAPH_GROUP_CREATE ('TestGroup',1); Done. -- 50 msec. SQL>DB.DBA.RDF_GRAPH_GROUP_INS ('TestGroup','http://myopenlink.net'); Done. -- 50 msec. SQL>DB.DBA.RDF_GRAPH_GROUP_INS ('TestGroup','http://demo.openlinksw.com'); Done. -- 50 msec.