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

1 or 0. When set to 1, and there is already group with the given name, then raises the error. When is set to 0 then will not show error message.

Return Types

The return value is not specified and may be changed in future versions.

Examples

Example24.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.