15.56 SEM_APIS.DISABLE_INMEMORY_FOR_MODEL

Format

SEM_APIS.DISABLE_INMEMORY_FOR_MODEL(
     model_name    IN VARCHAR2, 
     network_owner IN VARCHAR2 DEFAULT NULL,
     network_name  IN VARCHAR2 DEFAULT NULL);

Note:

This subprogram will be deprecated in a future release. It is recommended that you use the SEM_APIS.DISABLE_INMEMORY_FOR_RDF_GRAPH subprogram instead.

Description

Disables in-memory population of RDF data for a model in a semantic network.

Parameters

model_name

Name of the model.

network_owner

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

network_name

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

Usage Notes

To use this procedure, you must have DBA privileges.

See the information in RDF Support for Oracle Database In-Memory.

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

Examples

The following example disbles in-memory population of RDF data for model M1 in the semantic network named NET1 owned by RDFUSER.

EXECUTE SEM_APIS.DISABLE_INMEMORY_FOR_MODEL('M1', network_owner=>'RDFUSER', network_name=>'NET1');