15.37 SEM_APIS.SEM_APIS.CREATE_MV_BITMAP_INDEX

Format

SEM_APIS.CREATE_MV_BITMAP_INDEX (
  mv_name        IN VARCHAR2,
  idx_columns    IN VARCHAR2,
  options        IN VARCHAR2 DEFAULT NULL,
  network_owner  IN VARCHAR2 DEFAULT NULL,
  network_name   IN VARCHAR2 DEFAULT NULL,
);

Description

Creates a bitmap index on a materialized join view for an RDF graph stored in Oracle Database.

Parameters

mv_name

Name of the materialized view on which to create the bitmap index.

idx_columns

Name of the columns on which to create the bitmap index.

options

(Reserved for future use.)

network_owner

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

network_name

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

Usage Notes

For more information, see RDF Support for Materialized Join Views.

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

Examples

The following example creates two bitmap indexes on columns T0P and T1O for the materialized view MVX.

EXECUTE SEM_APIS.CREATE_MV_BITMAP_INDEX('MVX', 'T0P T1O');

The following example creates five bitmap indexes for the materialized view MVX..

EXECUTE SEM_APIS.CREATE_MV_BITMAP_INDEX('MVX', 'T0P T1O T0SV T1OV T1P$RDFVTYP');