Discussion:
AllowEnumeration and #path queries
(too old to reply)
Jack
2007-07-12 12:02:39 UTC
Permalink
File path queries such as this
#path *favorites*
only seem to work I enable enumerations which I am sure was not the
case in the past.
My hack is:
If InStr(1, Query, "#path", 1) Then Q.AllowEnumeration = True

Is this correct behaviour?
Hilary Cotter
2007-07-12 12:36:39 UTC
Permalink
This is correct. Basically depending on some factors indexing services will
do a grep of the file system. Unless you set AllowEnumeration =true your
results will be unpredicatable.
--
Looking for a SQL Server replication book?
http://www.nwsu.com/0974973602.html

Looking for a FAQ on Indexing Services/SQL FTS
http://www.indexserverfaq.com
Post by Jack
File path queries such as this
#path *favorites*
only seem to work I enable enumerations which I am sure was not the
case in the past.
If InStr(1, Query, "#path", 1) Then Q.AllowEnumeration = True
Is this correct behaviour?
Loading...