Discussion:
MaxRecords BUG?
(too old to reply)
Jack
2007-07-17 10:14:54 UTC
Permalink
There seems to be a bug with the MaxRecords property where it will not
return all results if the MaxRecords is low.

Case 1:
Q.Query = "#filename *.mdb"
Returns 12 files (correct)

Case 2:
Q.Query = "#filename *.mdb"
Q.MaxRecords = 25
Returns 3 files (incorrect)

Case 3:
Q.Query = "#filename *.mdb"
Q.MaxRecords = 44
Returns 10 files (incorrect)
Hilary Cotter
2007-07-17 15:25:45 UTC
Permalink
Is this still the case with AllowEnumeration set to true?
--
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
There seems to be a bug with the MaxRecords property where it will not
return all results if the MaxRecords is low.
Q.Query = "#filename *.mdb"
Returns 12 files (correct)
Q.Query = "#filename *.mdb"
Q.MaxRecords = 25
Returns 3 files (incorrect)
Q.Query = "#filename *.mdb"
Q.MaxRecords = 44
Returns 10 files (incorrect)
Jack
2007-07-20 08:49:33 UTC
Permalink
Indeed, it is so.

Jack
2007-07-18 12:40:39 UTC
Permalink
Aha, a known bug when sorting by rank descending win Windows XP. How
amusing.

http://groups.google.com/group/microsoft.public.inetserver.indexserver/browse_frm/thread/e786aed641921ea
Loading...