open-insight/SYSPROG/STPROCINS/IX_MGMT_EQUATES.txt
2024-03-25 15:17:34 -07:00

63 lines
2.1 KiB
Plaintext

compile Insert ix_mgmt_equates
/*-----------------------------------------------------------------------------
* EQUATES USED BY INDEX MANAGEMENT SSPs
MM-DD-YY initials Modification
09-25-91 Pat first created
12-14-09 mtr bitmap indexing
02-22-15 rjc Created
05-07-21 rjc Index rebuild / rebalance flags.
*----------------------------------------------------------------------------*/
* ----- generic index type constants
equ btree_index$ to "1"
equ crossref_index$ to "2"
equ relational_index$ to "3"
equ computed_index$ to "4"
* mtr 12-14-09
equ bitmap_index$ to "5"
equ symbolic_field$ to "S"
equ mv_field$ to "M"
equ create_index_now$ to "1"
equ create_index_later$ to "0"
equ index_on$ to "1"
*---- Crossref index constant
equ xref_stop_default_mode$ to "1"
equ xref_stop_default_plus_mode$ to "2"
equ xref_stop_user_defined_mode$ to "3"
equ xref_go_list_mode$ to "4"
equ xref_append$ to "_XREF"
equ default_delimiter$ to "SPACE"
*---- Relational index constant
equ relational_sort_top_mode$ to "1"
equ relational_sort_bot_mode$ to "2"
equ relational_sort_al_mode$ to "3"
equ relational_sort_ar_mode$ to "4"
equ relational_sort_dl_mode$ to "5"
equ relational_sort_dr_mode$ to "6"
equ top_mode_script$ to "TOP"
equ bot_mode_script$ to "BOT"
equ al_mode_script$ to "AL"
equ ar_mode_script$ to "AR"
equ dl_mode_script$ to "DL"
equ dr_mode_script$ to "DR"
*---- Add rebuild / rebalance flags for UPDATE_INDEX
Equ rebuild_flag_update$ To 0
Equ rebuild_flag_rebuild$ To 1
Equ rebuild_flag_rebalance_onupdates$ To 2
Equ rebuild_flag_rebalance_always$ To 3
Equ remake_index_Control$ To 4
Equ recompile_index_calc$ To 5