| How do I find the crawl status in WSS 3.0 |
| Written by Administrator |
| Thursday, 15 April 2010 10:50 |
|
Once I had to check progress of my full crawl for WSS 3.0, and as there is no GUI for that as for MOSS i started to google. Luckily for me I found perfect article how to find this one via SQL. You can find full article here: http://blogs.technet.com/neerajr/archive/2009/08/17/how-to-find-out-the-crawl-status-in-wss-3-0.aspx Example: SharePoint web application URL : http://wsstest:90 WSS 3.0 Search database: WSS_Search 1. Query to check the last crawled URL's for the WSS 3.0. SELECT [DocID],[AccessURL],[DisplayURL],[DisplayHash],[LastTouchStart],[LastTouchEnd] FROM [WSS_Search].[dbo].[MSSCrawlURL] where DisplayURL like '%wsstest:90%' order by LastTouchStart desc 2. Query to check the crawl error for the SharePoint site in WSS 3.0. select msscrawlurllog.lasttouchstart as Time, msscrawlurllog.displayurl as URL,msscrawlurllog.errorid as Error, msscrawlerrorlist.errormsg as Description from msscrawlurllog join msscrawlerrorlist on msscrawlurllog.errorid = msscrawlerrorlist.errorid order by msscrawlurllog.lasttouchstart 3. Query to check the how many items has crawled for the SharePoint site in WSS 3.0. SELECT [HostID],[HostName],[SuccessCount],[ErrorCount],[WarningCount] FROM [WSS_Search].[dbo].[MSSCrawlHostList] where HostName like '%wsstest:90%' 4. Query to find out the crawl 'Start" and 'completed" time in WSS 3.0. SELECT [CrawlID],[RequestTime],[Status],[StartTime],[EndTime] FROM [WSS_Search].[dbo].[MSSCrawlHistory] order by starttime desc Whole article including images you can find on original blog at: http://blogs.technet.com/neerajr/archive/2009/08/17/how-to-find-out-the-crawl-status-in-wss-3-0.aspx Cheers KbNk; |




