AC
2006-10-27 05:41:51 UTC
I used Hilary's code to select all files from my catalog.
This is basically what I used but with early binding (MS Access 2003).
=============
set ixsso=createobject("Ixsso.query")
ixsso.Catalog="web"
ixsso.Columns="FileIndex, Path, FileName"
ixsso.Query="Select FileIndex, path, Filename from Web"
set RecordSet=Ixsso.CreateRecordSet("nonSequential")
================
I should get all indexed files I think/hope.
Indexing Services reports 540,000+ files but I am only getting about 206,000
files. I even included AddScopeToQuery with "/" and "deep" which did
nothing. Why don't I get all of the indexed files?
Regards
This is basically what I used but with early binding (MS Access 2003).
=============
set ixsso=createobject("Ixsso.query")
ixsso.Catalog="web"
ixsso.Columns="FileIndex, Path, FileName"
ixsso.Query="Select FileIndex, path, Filename from Web"
set RecordSet=Ixsso.CreateRecordSet("nonSequential")
================
I should get all indexed files I think/hope.
Indexing Services reports 540,000+ files but I am only getting about 206,000
files. I even included AddScopeToQuery with "/" and "deep" which did
nothing. Why don't I get all of the indexed files?
Regards