sql >> Base de Datos >  >> RDS >> Oracle

Crear un índice espacial en Oracle

Antes de indexar la tabla, debe tenerla 'habilitada espacialmente'.
Intente verificar si se muestra en los metadatos espaciales:

SELECT * FROM USER_SDO_GEOM_METADATA
    WHERE TABLE_NAME = UPPER('floating_options')
      AND COLUMN_NAME = UPPER('area_geo');

Si no hay resultados, hay un par de opciones disponibles.
Una forma sucia:insertar datos directamente

INSERT INTO USER_SDO_GEOM_METADATA
VALUES (UPPER('floating_options'),UPPER('area_geo'),
        mdsys.SDO_DIM_ARRAY(
             mdsys.SDO_DIM_ELEMENT('Easting', <lowest_x>, <highest_x>, <x_tolerance>),
             mdsys.SDO_DIM_ELEMENT('Northing', <lowest_y>, <highest_y>, <y_tolerance>)
        ), <SRID>);

Cambie los <marcadores de posición> en consecuencia

Consulte también https://community.oracle.com/thread/836452 ?tstart=0 o http://gerardnico.com/wiki/oracle_spatial/metadata