|
Home > Archive > IIS Index Server > April 2004 > Wildcard Searching
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Wildcard Searching
|
|
|
| I would like to be able to search for wildcard values, eg. 'rcl???'.
I'm querying the Indexing Service via ASP as follows:
[vbcol=seagreen]
Set objQuery = Server.CreateObject("IXSSO.Query")
.Catalog = "Search"
.MaxRecords = 20
.SortBy = "rank [d]"
.Columns = "filename, path, vpath, size, write, " _
& "characterization, DocTitle, DocAuthor, " _
& "DocKeywords, rank, hitcount"
strQuery = "(" & strQuery & ")"
.Query = strQuery ' Query text[vbcol=seagreen]
I'm searching for documents like 'RCL350.doc', 'RCL360.doc' etc... I want to
be able to search for ranges, eg. 'RCL3??".
Can somebody point me in the right direction?
Thanks
| |
| George Cheng [MSFT] 2004-04-28, 3:34 pm |
| See the following
320942 Wildcard Searches Do Not Return Expected Results on Indexing Service
3.0
http://support.microsoft.com/?id=320942
Thank You
George Cheng
Microsoft Application Center & Index Server Support
Note: This article has no warranties implicit or explicit.
All the content is given on the "as is" basis and the user
takes full responsibility for its use and assumption.
Microsoft Corporation Copyright 2004
All Rights Reserved
--------------------
| From: "CJM" <cjmwork@yahoo.co.uk>
| Subject: Wildcard Searching
| Date: Wed, 28 Apr 2004 15:53:43 +0100
| Lines: 27
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2800.1409
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409
| Message-ID: <ew#jbCTLEHA.2396@TK2MSFTNGP12.phx.gbl>
| Newsgroups: microsoft.public.inetserver.indexserver
| NNTP-Posting-Host: gate.hexadex.com 193.130.80.177
| Path:
cpmsftngxa10.phx.gbl!TK2MSFTFEED01.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGP12
.phx.gbl
| Xref: cpmsftngxa10.phx.gbl microsoft.public.inetserver.indexserver:28839
| X-Tomcat-NG: microsoft.public.inetserver.indexserver
|
| I would like to be able to search for wildcard values, eg. 'rcl???'.
|
| I'm querying the Indexing Service via ASP as follows:
|
| >>> snippet >>>
| Set objQuery = Server.CreateObject("IXSSO.Query")
|
| .Catalog = "Search"
| .MaxRecords = 20
| .SortBy = "rank [d]"
| .Columns = "filename, path, vpath, size, write, " _
| & "characterization, DocTitle, DocAuthor, " _
| & "DocKeywords, rank, hitcount"
|
| strQuery = "(" & strQuery & ")"
|
| .Query = strQuery ' Query text
| >>>>>>>>>>>>
|
| I'm searching for documents like 'RCL350.doc', 'RCL360.doc' etc... I want
to
| be able to search for ranges, eg. 'RCL3??".
|
| Can somebody point me in the right direction?
|
| Thanks
|
|
|
| |
|
| Thanks George.
""George Cheng [MSFT]"" <GCheng@online.microsoft.com> wrote in message
news:kkk6LPVLEHA.928@cpmsftngxa10.phx.gbl...
> See the following
>
> 320942 Wildcard Searches Do Not Return Expected Results on Indexing
Service
> 3.0
> http://support.microsoft.com/?id=320942
>
> Thank You
>
> George Cheng
>
> Microsoft Application Center & Index Server Support
>
> Note: This article has no warranties implicit or explicit.
> All the content is given on the "as is" basis and the user
> takes full responsibility for its use and assumption.
> Microsoft Corporation Copyright 2004
> All Rights Reserved
>
> --------------------
> | From: "CJM" <cjmwork@yahoo.co.uk>
> | Subject: Wildcard Searching
> | Date: Wed, 28 Apr 2004 15:53:43 +0100
> | Lines: 27
> | X-Priority: 3
> | X-MSMail-Priority: Normal
> | X-Newsreader: Microsoft Outlook Express 6.00.2800.1409
> | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409
> | Message-ID: <ew#jbCTLEHA.2396@TK2MSFTNGP12.phx.gbl>
> | Newsgroups: microsoft.public.inetserver.indexserver
> | NNTP-Posting-Host: gate.hexadex.com 193.130.80.177
> | Path:
>
cpmsftngxa10.phx.gbl!TK2MSFTFEED01.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGP12
> phx.gbl
> | Xref: cpmsftngxa10.phx.gbl microsoft.public.inetserver.indexserver:28839
> | X-Tomcat-NG: microsoft.public.inetserver.indexserver
> |
> | I would like to be able to search for wildcard values, eg. 'rcl???'.
> |
> | I'm querying the Indexing Service via ASP as follows:
> |
> | >>> snippet >>>
> | Set objQuery = Server.CreateObject("IXSSO.Query")
> |
> | .Catalog = "Search"
> | .MaxRecords = 20
> | .SortBy = "rank [d]"
> | .Columns = "filename, path, vpath, size, write, " _
> | & "characterization, DocTitle, DocAuthor, " _
> | & "DocKeywords, rank, hitcount"
> |
> | strQuery = "(" & strQuery & ")"
> |
> | .Query = strQuery ' Query text
> | >>>>>>>>>>>>
> |
> | I'm searching for documents like 'RCL350.doc', 'RCL360.doc' etc... I
want
> to
> | be able to search for ranges, eg. 'RCL3??".
> |
> | Can somebody point me in the right direction?
> |
> | Thanks
> |
> |
> |
>
|
|
|
|
|