24 lines
922 B
Plaintext
24 lines
922 B
Plaintext
/* ALG_IND.SRC
|
|
* $Revision: 5 $
|
|
* $Modtime: 6-09-10 13:54 $
|
|
*/
|
|
|
|
create index alg_i_alg_district1 on alg_district(alg_regio_key);
|
|
|
|
create index alg_i_alg_locatie1 on alg_locatie(alg_district_key);
|
|
|
|
CREATE INDEX alg_i_alg_terreinsector1 ON alg_terreinsector(alg_locatie_key);
|
|
|
|
create index alg_i_alg_gebouw1 on alg_gebouw(alg_locatie_key);
|
|
create index alg_i_alg_gebouw2 on alg_gebouw(alg_srtgebouw_key);
|
|
|
|
create index alg_i_alg_verdieping1 on alg_verdieping(alg_gebouw_key);
|
|
|
|
create index alg_i_alg_ruimte1 on alg_ruimte(alg_verdieping_key);
|
|
create index alg_i_alg_ruimte2 on alg_ruimte(alg_srtruimte_key);
|
|
create index alg_i_alg_ruimte3 on alg_ruimte(alg_ruimte_key, alg_ruimte_nr);
|
|
// speciaal tbv ins_v_alg_overzicht:
|
|
CREATE INDEX alg_i_alg_ruimte4 on alg_ruimte(alg_verdieping_key,alg_ruimte_key, alg_ruimte_upper_nr, alg_ruimte_nr);
|
|
|
|
REGISTERONCE('$Workfile: ALG_IND.SRC $','$Revision: 5 $')
|