Files
Database/ALG/ALG_IND.SRC
2012-05-06 12:54:48 +00:00

24 lines
893 B
Plaintext

/* ALG_IND.SRC
* $Revision$
* $Id$
*/
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$')