sdedbtune -o insert -k PART_IOT -P ST_INDEX_PARTITION_LOCAL -v TRUE -i sde:oracle10g:xyz -u sde -p xyz
CREATE INDEX PART_TEST2_SPATIAL_INDEX ON PART_TEST2 (SHAPE) INDEXTYPE IS SDE.ST_SPATIAL_INDEX LOCAL ;
create table part_test (OBJECTID INTEGER ,MY_DATE DATE ,SHAPE ST_GEOMETRY ) partition by range (my_date) (partition P201301 values less than (to_date('02/01/2013','mm/dd/yyyy')) ,partition P201302 values less than (to_date('03/01/2013','mm/dd/yyyy')) ); create bitmap index part_test_idx1 on part_test (my_date) local; insert into part_test (select objectid, eff_dt, shape from other_table where rownum <= 100 ); commit; sdelayer -o register -l part_test,shape -e p -u xyz -p xyz -i sde:oracle10g:xyz -C objectid,SDE -t ST_GEOMETRY -E empty -k PART_IOT
alter table part_test add partition P201303 values less than (to_date('04/01/2013','mm/dd/yyyy'));
Les membres connectés peuvent publier, suivre les mises à jour, et plus encore. Nouveau ici ? Inscrivez-vous gratuitement.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.