25 lines
861 B
Plaintext
25 lines
861 B
Plaintext
#ifdef ALG // 13-03-96 AH
|
|
/*
|
|
* Revisie:
|
|
*/
|
|
|
|
|
|
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);
|
|
|
|
#endif // ALG
|