Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2000 Forums
 Transact-SQL (2000)
 Fulltext search

Author  Topic 

ranganath
Posting Yak Master

209 Posts

Posted - 2008-07-10 : 03:01:59
hi all

i devloped one application for the search using fulltext server
for the fulltext query

if suppose i search for "Auto"

it will give me the following results

1. Auto
2. Autos
3. Automobile
4. Autoclub
5. RealAuto

RickD
Slow But Sure Yak Herding Master

3608 Posts

Posted - 2008-07-10 : 04:26:55
Did you have a question?
Go to Top of Page

ranganath
Posting Yak Master

209 Posts

Posted - 2008-07-10 : 05:02:31
Hi

Declare @Table Table (Val varchar(1000))
Insert into @Table
Select 'Fax' Union All
Select 'Number' Union All
Select 'Test' Union All
Select 'axn' Union All
Select 'num'

if we enter 'FaxNumberTest' as input string then the results should come if the Val like 'Fax', 'Number', 'Test', 'Axn', 'ber', 'rte' and so on. how can i get this.
Go to Top of Page

rmiao
Master Smack Fu Yak Hacker

7266 Posts

Posted - 2008-07-10 : 23:25:01
Take look at contains or FREETEXT full-text predicates in books online.
Go to Top of Page
   

- Advertisement -