Reputation: 743
How to get last crawl time of document in Sharepoint 2007?
I want to know in which table I will get this information ?
Upvotes: 1
Views: 443
Reputation: 743
With the help of below query you can get last crawl time of document.
SELECT LastTouchStart
FROM MSSCrawlURL
WHERE (DisplayURL = '<displayURL>')
Upvotes: 1