by dipbiswas
18. February 2011 08:42
SharePoint does not provide an option to export crawl logs from the Search crawl.
The following set of queries can be executed in the database to export the list of errors from the crawl logs.
select * from MSSCrawlErrorList with (nolock)This query will return the different types of error that can be generated by the search crawl. Keep a note of the ErrorID for the error that you want to exportExample: ErrorID 692 is for "The crawler could not communicate with the server. Check that the server...
[More]