some questions about windows indexing service
I am recently working on the indexing server on Windows XP and Windows Server 2005. Here I have some questions:
1. When doing the catalog query, found some files in the result file list do not contain the content string, any thing I did wrong when creating the catalog and add the directories into the catalog?
2. If I want to search the files which contents have the string "manufacture", using the following query ( LIKE, MATCHES ) does not work:
Select * from Scope() where Contents LIKE 'manufacture%'
Select * from Scope() where Contents LIKE '%anufactu%'
Select * from Scope() where MATCHES (Contents, 'manufacture')
Select * from Scope() where MATCHES (Contents, '|(manu|)|{1,|})
what's the right way to do this content searching, for example, searhing "manufacture", "manu", "nufac",..etc, all will get the file contain "manufacture".
Thanks!
Patrick
February 25th, 2011 11:38am
Hi,
This involves
knowledge of code and
development.
In order to solve your problem
as soon as possible, you can leave this
question to the MSDN
forums:
http://social.msdn.microsoft.com/Forums/en/categories/
Thank you for your understanding!Technology changes life
Free Windows Admin Tool Kit Click here and download it now
March 4th, 2011 4:37am


