Page 1 of 1
Metamorph Inverted Index
Posted: Tue Feb 21, 2006 9:26 pm
by kzinda
How do I determine how many characters the indexing is set for? I am using a script that someone else developed and I would like to make sure indexing is set to one character.
Also, was is the command I need to execute on the command line to get the information?
Metamorph Inverted Index
Posted: Wed Feb 22, 2006 10:37 am
by John
There should be an addexp before the create index command to define what constitutes a word.
Metamorph Inverted Index
Posted: Wed Feb 22, 2006 10:49 pm
by kzinda
I don't see in the manual how this is specified. Are you suggesting?
drop index PATN_DRWD_PAx_MI;
REX addexp \alnum{1,99};
create METAMORPH INVERTED index PATN_DRWD_PAx_MI on PATN(DRWD_PAx,PATN_ISD);
Metamorph Inverted Index
Posted: Thu Feb 23, 2006 9:54 am
by John
More like:
drop index PATN_DRWD_PAx_MI;
set addexp= '\alnum{1,99}';
create METAMORPH INVERTED index PATN_DRWD_PAx_MI on PATN(DRWD_PAx,PATN_ISD);
They should all run in the same process.