Files
Database/ALG/ALG_IND.SRC
Jos Groot Lipman de2938b9c2 FSN#27706 $Workfile overal vervangen door $Id
svn path=/Database/trunk/; revision=19574
2013-10-23 07:42:19 +00:00

24 lines
860 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('$Id$')