NPM and search results

Post Reply
skalyanaraman
Posts: 109
Joined: Tue May 29, 2001 9:13 pm

NPM and search results

Post by skalyanaraman »

Hi,
We are trying to run query on a field, say TITLE like so,

select DOCID from tbldoc where TITLE like '#<=3'

We get lots of hits and bunch of the docs had the words "several" and "a %" and "a decis" (the last one is actually highlighed off of "a decision") and other stuff.

Why is this so? Can we avoid these and just force it to stick to numbers?

Thanks in advance for the help!
User avatar
mark
Site Admin
Posts: 5519
Joined: Tue Apr 25, 2000 6:56 pm

NPM and search results

Post by mark »

NPM always looks for spelled quantities as well as plain numerics. It's also not limited to whole numbers. "several" is anything from 3 to 10, "a %" is .01, "a deci*" is .1.

If there's structured numeric data it should be placed into integer field(s).
skalyanaraman
Posts: 109
Joined: Tue May 29, 2001 9:13 pm

NPM and search results

Post by skalyanaraman »

Thanks for the reply. But I am curious,
1. Several is 3-10 in the Texis world right? Is this kind of hard-wired or configurable?
2. how is a deci = .1?

We will take your suggestion for storing in numerical fields!! thanks
User avatar
mark
Site Admin
Posts: 5519
Joined: Tue Apr 25, 2000 6:56 pm

NPM and search results

Post by mark »

1. hardwired
2. "a"="one", "deci"=tenth
Post Reply