Name
DB.DBA.RDF_GRAPH_GROUP_CREATE — Creates graph group.
Synopsis
DB.DBA.RDF_GRAPH_GROUP_CREATE
(
|
in group_name varchar , |
in
is_silent
integer
) ; |
Description
Creates graph group.
Parameters
group_name
The name of the graph group
is_silent
0 (default) or 1. When set to 0, and there is already group with the given name, error will be raised. When set to 1, there will be no error message.
Return Types
The return value is not specified and may be changed in future versions.
Examples
Example 24.274. Simple example
SQL>DB.DBA.RDF_GRAPH_GROUP_CREATE ('TestGroup',1); Done. -- 50 msec. SQL> select * from DB.DBA.RDF_GRAPH_GROUP ; RGG_IID RGG_IRI RGG_MEMBER_PATTERN RGG_COMMENT VARCHAR NOT NULL VARCHAR NOT NULL VARCHAR VARCHAR _______________________________________________________________________________ #i1020000 TestGroup NULL NULL 1 Rows. -- 10 msec.