Oracle Spatial User's Guide and Reference
Release 8.1.7

Part Number A85337-01

Library

Product

Contents

Index

Go to previous page Go to next page

5
Indexing Statements

This chapter describes the statements used when working with the spatial object data type. The statements are listed in Table 5-1.

Table 5-1 Spatial Index Creation and Usage Statements
Statement  Description 

ALTER INDEX 

Alters a spatial index on a column of type MDSYS.SDO_GEOMETRY. 

ALTER INDEX REBUILD 

Rebuilds a spatial index on a column of type MDSYS.SDO_GEOMETRY. 

ALTER INDEX RENAME TO 

Changes the name of a spatial index on a column of type MDSYS.SDO_GEOMETRY. 

CREATE INDEX 

Creates a spatial index on a column of type MDSYS.SDO_GEOMETRY. 

DROP INDEX 

Deletes a spatial index on a column of type MDSYS.SDO_GEOMETRY 


ALTER INDEX

Purpose

Alters specific parameters for a spatial index or rebuilds a spatial index.

Syntax

ALTER INDEX [schema.]index PARAMETERS (`index_params [physical_storage_params]' )

Keywords and Parameters

INDEX_PARAMS 

Allows you to change the characteristics of the spatial index, and the type (fixed or hybrid) of a quadtree index.  

Keyword 

Description 

add_index 

Specifies the name of the new index table to add.
Data type is VARCHAR2. 

delete_index 

Specifies the name of the index table to delete. You can only delete index tables that were created with the ALTER INDEX add_index statement. The primary index table cannot be deleted with this parameter. To delete the primary index table, use the DROP INDEX statement.
Data type is VARCHAR2. 

sdo_commit_interval 

Specifies the number of underlying table rows that are processed between commit intervals for the index data. (Quadtree indexes only.) The default behavior commits the index data only after all rows in the underlying table have been processed. See the Usage Notes for further details.
Data type is NUMBER. 

sdo_fanout 

Specifies the fanout value, which reflects the node capacity of the index tree. (R-tree indexes only.) If queries that use the index are likely to return thousands of rows or more, you may want to specify a value greater than the default, such as 50 or 60.
Data type is NUMBER. Default = 35. 

sdo_indx_dims 

Specifies the number of dimensions to be indexed. (R-tree indexes only.) For example, a value of 2 causes the first 2 dimensions to be indexed. Must be less than or equal to the number of actual dimensions (number of SDO_DIM_ELEMENT instances in the dimensional array that describes the geometry objects in the column).
Data type is NUMBER. Default = number of actual dimensions. 

sdo_level 

Specifies the desired fixed-size tiling level. (Quadtree indexes only.)
Data type is NUMBER.  

sdo_numtiles 

Specifies the number of variable-sized tiles to be used in tessellating an object. (Quadtree indexes only.)
Data type is NUMBER. 

sdo_rtr_pctfree 

Specifies the minimum percentage of slots in each index tree node to be left empty when the index is created. Slots that are left empty can be filled later when new data is inserted into the table. (R-tree indexes only.) The value can range from 0 to 50.
Data type is NUMBER. Default = 10. 

PHYSICAL_STORAGE_PARAMS 

Determines the storage parameters used for altering the spatial index data table. A spatial index data table is a standard Oracle table with a prescribed format. Not all physical storage parameters that are allowed in the STORAGE clause of a CREATE TABLE statement are supported. The following is a list of the supported subset. 

Keyword 

Description 

tablespace 

Specifies the tablespace in which the index data table is created. This parameter is the same as TABLESPACE in the STORAGE clause of a CREATE TABLE statement.  

initial 

Is the same as INITIAL in the STORAGE clause of a CREATE TABLE statement.  

next 

Is the same as NEXT in the STORAGE clause of a CREATE TABLE statement.  

minextents 

Is the same as MINEXTENTS in the STORAGE clause of a CREATE TABLE statement.  

maxextents 

Is the same as MAXEXTENTS in the STORAGE clause of a CREATE TABLE statement.  

pctincrease 

Is the same as PCTINCREASE in the STORAGE clause of a CREATE TABLE statement.  

btree_initial 

Is the same as INITIAL in the STORAGE clause of a CREATE INDEX statement in the case of a standard B-tree index. (Quadtree indexes only.) 

btree_next 

Is the same as NEXT in the STORAGE clause of a CREATE INDEX statement in the case of a standard B-tree index. (Quadtree indexes only.) 

btree_pctincrease 

Is the same as PCTINCREASE in the STORAGE clause of a CREATE INDEX statement in the case of a standard B-tree index. (Quadtree indexes only.) 

Prerequisites

Usage Notes

This statement is used to change the parameters of an existing index. This is the only way you can add or build multiple indexes on the same column.

See the Usage Notes for the CREATE INDEX statement for usage information about many of the available parameters.

Examples

The following example adds a new index table named FIXED_INDEX$ to the index named QTREE.

ALTER INDEX qtree PARAMETERS ('add_index=fixed_index$ 
sdo_level=8
initial=100M
next=1M
pctincrease=0
btree_initial=5M
btree_next=1M
btree_pctincrease=0');

Related Topics


ALTER INDEX REBUILD

Syntax

ALTER INDEX [schema.]index REBUILD
[PARAMETERS (`rebuild_params [physical_storage_params]' ) ]

Purpose

Rebuilds a spatial index.

Keywords and Parameters

REBUILD_PARAMS 

Specifies in a command string the index parameters to use in rebuilding the spatial index.  

Keyword 

Description 

layer_gtype 

Specifies special processing for point data.
If the layer you are indexing is all points, set this parameter to POINT for optimal performance.
Data type is VARCHAR2. 

rebuild_index 

Specifies the name of the spatial index table to be rebuilt.
Data type is VARCHAR2. 

sdo_commit_interval 

Specifies the number of underlying table rows that are processed between commit intervals for the index data. (Quadtree indexes only.) The default behavior commits the index data only after all rows in the underlying table have been processed. See the Usage Notes for further details.
Data type is NUMBER. 

sdo_fanout 

Specifies the fanout value, which reflects the node capacity of the index tree. (R-tree indexes only.) If queries that use the index are likely to return thousands of rows or more, you may want to specify a value greater than the default, such as 50 or 60.
Data type is NUMBER. Default = 35. 

sdo_indx_dims 

Specifies the number of dimensions to be indexed. (R-tree indexes only.) For example, a value of 2 causes the first 2 dimensions to be indexed. Must be less than or equal to the number of actual dimensions (number of SDO_DIM_ELEMENT instances in the dimensional array that describes the geometry objects in the column).
Data type is NUMBER. Default = number of actual dimensions. 

sdo_level 

Specifies the desired fixed-size tiling level. (Quadtree indexes only.)
Data type is NUMBER.  

sdo_numtiles 

Specifies the number of variable-sized tiles to be used in tessellating an object. (Quadtree indexes only.)
Data type is NUMBER. 

sdo_rtr_pctfree 

Specifies the minimum percentage of slots in each index tree node to be left empty when the index is created. Slots that are left empty can be filled later when new data is inserted into the table. (R-tree indexes only.) The value can range from 0 to 50.
Data type is NUMBER. Default = 10. 

PHYSICAL_STORAGE_PARAMS 

Determines the storage parameters used for rebuilding the spatial index data table. A spatial index data table is a regular Oracle table with a prescribed format. Not all physical storage parameters that are allowed in the STORAGE clause of a CREATE TABLE statement are supported. The following is a list of the supported subset. 

Keyword 

Description 

tablespace 

Specifies the tablespace in which the index data table is created. Same as TABLESPACE in the STORAGE clause of a CREATE TABLE statement.  

initial 

Is the same as INITIAL in the STORAGE clause of a CREATE TABLE statement.  

next 

Is the same as NEXT in the STORAGE clause of a CREATE TABLE statement.  

minextents 

Is the same as MINEXTENTS in the STORAGE clause of a CREATE TABLE statement.  

maxextents 

Is the same as MAXEXTENTS in the STORAGE clause of a CREATE TABLE statement.  

pctincrease 

Is the same as PCTINCREASE in the STORAGE clause of a CREATE TABLE statement.  

btree_initial 

Is the same as INITIAL in the STORAGE clause of a CREATE INDEX statement in the case of a standard B-tree index. (Quadtree indexes only.) 

btree_next 

Is the same as NEXT in the STORAGE clause of a CREATE INDEX statement in the case of a standard B-tree index. (Quadtree indexes only.) 

btree_pctincrease 

Is the same as PCTINCREASE in the STORAGE clause of a CREATE INDEX statement in the case of a standard B-tree index. (Quadtree indexes only.) 

Prerequisites

Usage Notes

An ALTER INDEX REBUILD `rebuild_params' statement rebuilds the index using supplied parameters. Spatial index creation involves creating and inserting index data, for each row in the underlying table column being spatially indexed, into a table with a prescribed format. The default, or normal, operation is that all rows in the underlying table are processed before the insertion of index data is committed. This requires adequate rollback segment space.

You may choose to commit index data after every n rows of the underlying table have been processed. This is done by specifying SDO_COMMIT_INTERVAL = n. The potential complication is that, if there is an error during index rebuild and if periodic commit operations have taken place, then the spatial index will be in an inconsistent state. The only recovery option is to use DROP INDEX (possibly with the FORCE option) and CREATE INDEX statements after ensuring that the various tablespaces are the required size and any other error conditions have been removed.

This statement does not use any previous parameters from the index creation. All parameters should be specified for the index you want to rebuild.

See also the Usage Notes for the CREATE INDEX statement for usage information about many of the available parameters.

Examples

The following example rebuilds OLDINDEX with an SDO_LEVEL value of 12.

ALTER INDEX oldindex REBUILD PARAMETERS('sdo_level=12');

Related Topics


ALTER INDEX RENAME TO

Syntax

ALTER INDEX [schema.]index RENAME TO <new_index_name>

Purpose

Alters the name of a spatial index.

Keywords and Parameters

new_index_name 

Specifies the new name of the index. 

Prerequisites

Usage Notes

The new_index_name string must not be longer than 18 characters.

Examples

The following example renames OLDINDEX to NEWINDEX.

ALTER INDEX oldindex RENAME TO newindex;

Related Topics


CREATE INDEX

Syntax

CREATE INDEX [schema.]<index_name> ON [schema.]<tableName> (column)

INDEXTYPE IS MDSYS.SPATIAL_INDEX

[PARAMETERS `index_params [physical_storage_params]']);

Purpose

Creates a spatial index on a column of type MDSYS.SDO_GEOMETRY.

Keywords and Parameters

INDEX_PARAMS 

Determine the type (R-tree or quadtree; and for quadtree, fixed or hybrid) and the characteristics of the spatial index.  

Keyword 

Description 

layer_gtype 

Specifies special processing for point data. (Quadtree indexes only.) If the layer you are indexing is all points, set this parameter to POINT for optimal performance.
Data type is VARCHAR2. 

sdo_commit_interval 

Specifies the number of underlying table rows that are processed between commit intervals for the index data. (Quadtree indexes only.) The default behavior commits the index data only after all rows in the underlying table have been processed. See the Usage Notes for further details.
Data type is NUMBER. 

sdo_fanout 

Specifies the fanout value, which reflects the node capacity of the index tree. (R-tree indexes only.) If queries that use the index are likely to return thousands of rows or more, you may want to specify a value greater than the default, such as 50 or 60.
Data type is NUMBER. Default = 35. 

sdo_indx_dims 

Specifies the number of dimensions to be indexed. (R-tree indexes only.) For example, a value of 2 causes the first 2 dimensions to be indexed. Must be less than or equal to the number of actual dimensions (number of SDO_DIM_ELEMENT instances in the dimensional array that describes the geometry objects in the column).
Data type is NUMBER. Default = number of actual dimensions. 

sdo_level 

Specifies the desired fixed-size tiling level. (Quadtree indexes only.)
Data type is NUMBER.  

sdo_numtiles 

Specifies the number of variable-sized tiles to be used in tessellating an object. (Quadtree indexes only.)
Data type is NUMBER. 

sdo_rtr_pctfree 

Specifies the minimum percentage of slots in each index tree node to be left empty when the index is created. Slots that are left empty can be filled later when new data is inserted into the table. (R-tree indexes only.) The value can range from 0 to 50.
Data type is NUMBER. Default = 10. 

PHYSICAL_STORAGE_PARAMS 

Determines the storage parameters used for creating the spatial index data table. A spatial index data table is a regular Oracle table with a prescribed format. Not all physical_storage_params that are allowed in the STORAGE clause of a CREATE TABLE statement are supported. The following is a list of the supported subset. 

Keyword 

Description 

tablespace 

Specifies the tablespace in which the index data table is created. Same as TABLESPACE in the STORAGE clause of a CREATE TABLE statement.  

initial 

Is the same as INITIAL in the STORAGE clause of a CREATE TABLE statement.  

next 

Is the same as NEXT in the STORAGE clause of a CREATE TABLE statement.  

minextents 

Is the same as MINEXTENTS in the STORAGE clause of a CREATE TABLE statement.  

maxextents 

Is the same as MAXEXTENTS in the STORAGE clause of a CREATE TABLE statement.  

pctincrease 

Is the same as PCTINCREASE in the STORAGE clause of a CREATE TABLE statement.  

btree_initial 

Is the same as INITIAL in the STORAGE clause of a CREATE INDEX statement in the case of a standard B-tree index. (Quadtree indexes only.) 

btree_next 

Is the same as NEXT in the STORAGE clause of a CREATE INDEX statement in the case of a standard B-tree index. (Quadtree indexes only.) 

btree_pctincrease 

Is the same as PCTINCREASE in the STORAGE clause of a CREATE INDEX statement in the case of a standard B-tree index. (Quadtree indexes only.) 

Prerequisites

Usage Notes

For information about R-tree and quadtree indexes, see Section 1.7.

By default, an R-tree index is created if the index_params string does not contain the sdo_level keyword or if the sdo_level value is zero (0). If the index_params string contains the sdo_level keyword with a non-zero value, a quadtree index is created. Some keywords apply only to R-tree or quadtree indexes, as noted in the Keywords and Parameters section.

Before you create an R-tree index, be sure that the rollback segment size and the SORT_AREA_SIZE parameter value are adequate, as described in Section 1.7.1.1. See also the considerations and recommendations for certain R-tree index parameters in Section 3.2.4.

For a quadtree index, the index_params string must contain either sdo_level or both sdo_level and sdo_numtiles, and any values specified for these parameters must be valid.

With an R-tree index on linear referencing system (LRS) data, the sdo_indx_dims parameter must be used and must specify the number of dimensions minus one, so as not to index the measure dimension. For example, if the dimensions are X, Y, and M, specify sdo_indx_dims=2 to index only the X and Y dimensions, and not the measure (M) dimension. (The LRS data model, including the measure dimension, is explained in Section E.2.)

Other options available for regular indexes (such as ASC and DESC) are not applicable for spatial indexes.

The index_name string must not be longer than 18 characters.

Default values for quadtree indexing:

The sdo_level value must be greater than zero.

If an sdo_numtiles value is specified, it might be overridden by the indexing algorithm.

Spatial index creation involves creating and inserting index data, for each row in the underlying table column being spatially indexed, into a table with a prescribed format. The default, or normal, operation is that all rows in the underlying table are processed before the insertion of index data is committed. This requires adequate rollback segment space.

You may choose to commit index data after every n rows of the underlying table have been processed. This is done by specifying SDO_COMMIT_INTERVAL = n. The potential complication is that, if there is an error during index rebuild and if periodic commit operations have taken place, then the spatial index will be in an inconsistent state. The only recovery option is to use DROP INDEX (possibly with the FORCE option) and CREATE INDEX statements after ensuring that the various tablespaces are the required size and any other error conditions have been removed.

Interpretation of sdo_level and sdo_numtiles value combinations (quadtree indexing) is shown in Table 5-2.

Table 5-2 SDO_LEVEL and SDO_NUMTILES Combinations  
SDO_LEVEL  SDO_NUMTILES  Action 

Not specified or 0. 

Not specified or 0. 

R-tree index. 

>= 1 

Not specified or 0. 

Fixed indexing (indexing with fixed-size tiles). 

>= 1 

>= 1 

Hybrid indexing with fixed-size and variable-sized tiles. The SDO_LEVEL column defines the fixed tile size. The SDO_NUMTILES column defines the number of variable tiles to generate per geometry. 

Not specified or 0. 

>= 1 

Not supported (error). 

If a tablespace name is provided in the parameters clause, the user (underlying table owner) must have appropriate privileges for that tablespace.

To determine if a CREATE INDEX statement for a spatial index has failed, check to see if the DOMIDX_OPSTATUS column in the USER_INDEXES view is set to FAILED. Note that this is different from the case of regular indexes, where you check to see if the STATUS column in the USER_INDEXES view is set to FAILED.

If the CREATE INDEX statement fails because of an invalid geometry, the ROWID of the failed geometry is returned in an error message along with the reason for the failure.

If the CREATE INDEX statement fails for any reason, then the DROP INDEX statement must be used to clean up the partially built index and associated metadata. If DROP INDEX does not work, add the FORCE parameter and try again.

Examples

The following example creates a spatial quadtree index named QTREE.

CREATE INDEX qtree ON POLY_4PT(geometry)
  INDEXTYPE IS MDSYS.SPATIAL_INDEX
  PARAMETERS('sdo_numtiles=4 sdo_level=6
    sdo_commit_interval=500 tablespace=system initial=10K
    next=10K pctincrease=10 minextents=10 maxextents=20');

Related Topics


DROP INDEX

Syntax

DROP INDEX [schema.]index [FORCE]

Purpose

Deletes a spatial index.

Keywords and Parameters

FORCE 

Causes the spatial index to be deleted from the system tables even if the index is marked in-progress or some other error condition occurs. 

Prerequisites

You must have EXECUTE privileges on the index type and its implementation type.

Usage Notes

Use DROP INDEX indexname FORCE to clean up after a failure in the CREATE INDEX statement.

Examples

The following example deletes a spatial quadtree index named OLDINDEX and forces the deletion to be performed even if the index is marked in-process or an error occurs.

DROP INDEX oldindex FORCE

Related Topics


Go to previous page Go to next page
Oracle
Copyright © 1996-2000, Oracle Corporation.

All Rights Reserved.

Library

Product

Contents

Index