kzinda
Posts: 62 Joined: Fri Nov 30, 2001 6:18 am
Post
by kzinda » Tue Feb 21, 2006 9:26 pm
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?
John
Site Admin
Posts: 2622 Joined: Mon Apr 24, 2000 3:18 pm
Location: Cleveland, OH
Contact:
Post
by John » Wed Feb 22, 2006 10:37 am
There should be an addexp before the create index command to define what constitutes a word.
John Turnbull
Thunderstone Software
kzinda
Posts: 62 Joined: Fri Nov 30, 2001 6:18 am
Post
by kzinda » Wed Feb 22, 2006 10:49 pm
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);
John
Site Admin
Posts: 2622 Joined: Mon Apr 24, 2000 3:18 pm
Location: Cleveland, OH
Contact:
Post
by John » Thu Feb 23, 2006 9:54 am
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.
John Turnbull
Thunderstone Software