<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Mike Taghizadeh's Blog : SharePoint</title><link>http://blogs.msdn.com/miketag/archive/tags/SharePoint/default.aspx</link><description>Tags: SharePoint</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>MOSS Search Word Stemming - Part 1</title><link>http://blogs.msdn.com/miketag/archive/2006/12/21/moss-search-word-stemming-part-1.aspx</link><pubDate>Thu, 21 Dec 2006 21:37:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1341749</guid><dc:creator>miketag</dc:creator><slash:comments>6</slash:comments><comments>http://blogs.msdn.com/miketag/comments/1341749.aspx</comments><wfw:commentRss>http://blogs.msdn.com/miketag/commentrss.aspx?PostID=1341749</wfw:commentRss><description>&lt;DIV&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN lang=it&gt;&lt;FONT face=Verdana size=2&gt;Hi all,&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt" mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN lang=it&gt;&lt;FONT face=Verdana size=2&gt;So I have been getting some questions around how MOSS does Word Stemming, so here is what I have been able to gather/research:&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt" mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;B&gt;&lt;SPAN lang=IT style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;MOSS Search Stemming:&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN lang=IT style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;The word&lt;B&gt; Stemming&lt;/B&gt; refers to the process of stripping off endings of words at query/index time so that different search terms will match and retrieve documents containing related words in the index. A hypothetical example of this would be the reduction of the related words “diet”, “diets”, “dieting”, “dieted”, “dietary”, “dietician”, “dieticians”, etc to a single stem “diet” which would allow a query for any one of these words to be matched against documents containing any of the other words.&amp;nbsp; Computational implementations of stemming are typically not based on linguistic notions of stem and affix, but rather just frequently occurring character sequences. &lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;The correct linguistic terminology for the process of stemming described above is &lt;B&gt;&lt;U&gt;morphological processing&lt;/U&gt;&lt;/B&gt;, meaning the linking of a given word form to its base form and other related word forms.&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;Morphological processing has two main aspects: &lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoListParagraph style="MARGIN: 0in 0in 0pt 0.5in; TEXT-INDENT: -0.25in"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;1.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Morphological Analysis &lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoListParagraph style="MARGIN: 0in 0in 0pt 0.5in; TEXT-INDENT: -0.25in"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;2.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Morphological Generation.&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;Morphological Analysis&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt; refers to the process of analyzing a given word form by assigning its correct morphosyntactic data (such as person, number, gender, tense, etc) and identifying its internal structure in terms of base form and any prefixes and suffixes which can be &lt;U&gt;inflectional&lt;/U&gt; (and do not change the part of speech or meaning of the word: e.g. diet, diets) or &lt;U&gt;derivational&lt;/U&gt; (which do change the part of speech or meaning of the word, e.g. diet, dietary).&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;Morphological Generation&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt; goes ones step further.&amp;nbsp; In addition to analyzing an inflected form down to its base form, it also generates all inflected forms which are related to the same base form.&amp;nbsp; In this case, the inflected verb form “loved” is reduced to the base form “love” by Morphological Analysis and then Morphological Generation generates all related inflected forms, i.e. “love”, “loves”, “loving” “loved” which are then matched against the document index and all matches are retrieved and displayed to the user (normally in search engines exact matches are given a higher weighting than the related words and are displayed at the top of the results list).&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;The decision as to whether to apply Morphological Analysis or both Morphological Analysis and Morphological Generation in Search depends on two major considerations:&amp;nbsp; (a) whether there are any restrictions on the size of the search index, and (b) the level of morphological complexity of the language.&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoListParagraph style="MARGIN: auto 0in auto 0.5in; TEXT-INDENT: -0.25in"&gt;&lt;FONT face=Verdana&gt;&lt;SPAN style="FONT-SIZE: 10pt; COLOR: #1f497d"&gt;(a)&lt;/SPAN&gt;&lt;/FONT&gt;&lt;SPAN style="FONT-WEIGHT: normal; FONT-SIZE: 7pt; COLOR: #1f497d; FONT-STYLE: normal; FONT-FAMILY: Verdana; FONT-VARIANT: normal"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;If we do not want the size of the index to increase as a result of this morphological processing, then we will leave the index unchanged and use Morphological Analysis, and Morphological Generation at query time to expand a given search query term into a list of inflectionally- and/or derivationally-related word forms which are all then matched against the search index and return a list of results in which exact matches are listed first.&amp;nbsp; If the size of the index is permitted to increase then we can use Morphological Analysis at index time to store a base form along with each inflected form in the index.&amp;nbsp; At query time we will also use Morphological Analysis to attach a base form to the query term and then search on both items.&amp;nbsp; All matches for both query term and its base form will be retrieved and any exact matches on the query term listed first.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoListParagraph style="MARGIN: auto 0in auto 0.5in; TEXT-INDENT: -0.25in"&gt;&lt;FONT face=Verdana&gt;&lt;SPAN style="FONT-SIZE: 10pt; COLOR: #1f497d"&gt;(b)&lt;/SPAN&gt;&lt;/FONT&gt;&lt;SPAN style="FONT-WEIGHT: normal; FONT-SIZE: 7pt; COLOR: #1f497d; FONT-STYLE: normal; FONT-FAMILY: Verdana; FONT-VARIANT: normal"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;If the morphology of a particular language is very rich then a very large number of query terms could be generated at run time.&amp;nbsp; This could have a profound effect on processing efficiency.&amp;nbsp; In languages such as Arabic and Hebrew therefore which have a very large number of forms of a single word (the number can get into the thousands), it is therefore preferable to avoid morphological generation and just use Morphological Analysis at both index and query time.&amp;nbsp; This increases the size of the index but has the advantage that the number of forms of a word stored in the index and generated from the query will not exceed 2 (the word itself and its associated base form).&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoListParagraph style="MARGIN: auto 0in auto 0.5in; TEXT-INDENT: -0.25in"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;PS: For Arabic related issues and questions, please see:&lt;/SPAN&gt;&lt;/P&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;
&lt;P class=MsoNormal dir=ltr style="DIRECTION: ltr; unicode-bidi: embed; TEXT-ALIGN: left"&gt;&lt;SPAN style="FONT-SIZE: 11pt; COLOR: #1f497d; FONT-FAMILY: 'Calibri','sans-serif'"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Arabic specific MOSS&lt;/SPAN&gt; &lt;SPAN style="FONT-SIZE: 11pt; COLOR: #1f497d; FONT-FAMILY: 'Calibri','sans-serif'"&gt;&lt;A title=http://www.microsoft.com/middleeast/arabicdev/office/office2007/SharePoint.aspx href="http://www.microsoft.com/middleeast/arabicdev/office/office2007/SharePoint.aspx"&gt;&lt;FONT color=#800080&gt;http://www.microsoft.com/middleeast/arabicdev/office/office2007/SharePoint.aspx&lt;/FONT&gt;&lt;/A&gt; , &lt;BR&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 11pt; COLOR: #1f497d; FONT-FAMILY: 'Calibri','sans-serif'"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Arabic MOSS search &lt;A title=http://www.microsoft.com/middleeast/arabicdev/office/office2007/Search.aspx href="http://www.microsoft.com/middleeast/arabicdev/office/office2007/Search.aspx"&gt;http://www.microsoft.com/middleeast/arabicdev/office/office2007/Search.aspx&lt;/A&gt; ,&lt;BR&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 11pt; COLOR: #1f497d; FONT-FAMILY: 'Calibri','sans-serif'"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Arabic 2007 office servers &lt;A title=http://www.microsoft.com/middleeast/arabicdev/office/office2007/office2007server.aspx href="http://www.microsoft.com/middleeast/arabicdev/office/office2007/office2007server.aspx"&gt;http://www.microsoft.com/middleeast/arabicdev/office/office2007/office2007server.aspx&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Arial','sans-serif'"&gt;&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/SPAN&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;The key point of difference between wild card searching and word stemming (or morphological processing) is that the former is just string based and allows the user to find in some cases both inflectional and derivational variants of the query term.&amp;nbsp; The Stemming approach deals very well with inflectional variants but we currently don’t handle derivational morphology for most languages.&amp;nbsp; In languages where we do have some limited treatment of derivational morphology such as Arabic and Hebrew, this treatment is limited to high frequency terms.&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt" mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;Thanks for Ian Johnson from the Natural Language Group at Microsoft for providing his feedback on this.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt" mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;FONT face=Verdana size=2&gt;Stay tuned for Part 2, where I will explain how MOSS does Stemming in more detail.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt" mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;FONT face=Verdana size=2&gt;Hope that helps&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;FONT face=Verdana size=2&gt;Mike&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt" mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=1341749" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/miketag/archive/tags/MOSS/default.aspx">MOSS</category><category domain="http://blogs.msdn.com/miketag/archive/tags/SharePoint/default.aspx">SharePoint</category><category domain="http://blogs.msdn.com/miketag/archive/tags/Search/default.aspx">Search</category><category domain="http://blogs.msdn.com/miketag/archive/tags/Stemming/default.aspx">Stemming</category><category domain="http://blogs.msdn.com/miketag/archive/tags/Word+Stemming/default.aspx">Word Stemming</category></item><item><title>Differences Between MOSS Content Sources</title><link>http://blogs.msdn.com/miketag/archive/2006/12/06/differences-between-moss-content-sources.aspx</link><pubDate>Wed, 06 Dec 2006 21:08:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1224666</guid><dc:creator>miketag</dc:creator><slash:comments>18</slash:comments><comments>http://blogs.msdn.com/miketag/comments/1224666.aspx</comments><wfw:commentRss>http://blogs.msdn.com/miketag/commentrss.aspx?PostID=1224666</wfw:commentRss><description>&lt;DIV&gt;
&lt;DIV&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;&lt;SPAN class=119353703-04122006&gt;I &lt;/SPAN&gt;&amp;nbsp;have been getting this question few times now with some of my MOSS Search customers. I have been asked what is the &lt;U&gt;difference&lt;/U&gt; in setting up a &lt;B&gt;"SharePoint Sites" MOSS Content Source&lt;/B&gt; versus a &lt;B&gt;"Web Sites" MOSS Content Source&lt;/B&gt;. &lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;Here I have tried to add some of my thoughts on these two:&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL type=disc&gt;
&lt;LI class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;Both these Content Sources allow you to have Name to describe the Content Source, so that you know the name for tracking and other Search related tasks&lt;/SPAN&gt;&lt;FONT face=Verdana size=2&gt; &lt;/FONT&gt;&lt;/LI&gt;
&lt;LI class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;They both allow you to have Start Addresses for crawling this Content Source. In the Web Sites Content Course, this can include any content, from a single web page to a whole entire web site. For a SharePoint Sites Content Source, this can include Office SharePoint Server sites and WSS Sites.&lt;/SPAN&gt;&lt;FONT face=Verdana size=2&gt; &lt;/FONT&gt;&lt;/LI&gt;
&lt;LI class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;For setting the Crawl Settings, this is where the difference between the two come about. In a Web Sites Content Source, you can specify that you only want to crawl the server of which you entered the Start Address above, or only crawl the first page of the start address above, or .... (which is my favorite) ... have a custom crawl settings set up. Here you can specify Server Hops and Page Depths. These two options are not available in a SharePoint Sites Content Source. &lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI class=MsoNormal style="COLOR: black"&gt;&lt;SPAN style="FONT-SIZE: 10pt; COLOR: windowtext; FONT-FAMILY: Verdana"&gt;Page Depths are the number of links to follow on the same hostname. So for your SharePoint Sites &lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;Content Source, if you have a Page Depth of 1, the crawler will follow links from the home page and then stop. &lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI class=MsoNormal style="COLOR: black"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;Server Hops are the number of host name changes that the crawler will make. For example, if you have a Server hop of 1, a link on your site will be followed to any other host name, but it will not be followed to another server hop. &lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI class=MsoNormal style="COLOR: black"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;One additional&amp;nbsp;difference is that the SharePoint content source allows users to crawl a single WSS site collection, which is not possible in a Web Sites content source. Meaning, if you want to&amp;nbsp;crawl only a site collection, you have to put its URL in a SharePoint content source&amp;nbsp;like &lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 10pt; COLOR: blue; FONT-FAMILY: Verdana"&gt;&lt;A title="http://myserver.com/sites/mikesitecollection&amp;#13;&amp;#10;http://myserver.com/mikesitecollection" href="http://myserver.com/sites/mikesitecollection" mce_href="http://myserver.com/sites/mikesitecollection"&gt;http://myserver.com/&lt;SPAN class=119353703-04122006 title=http://myserver.com/sites/mikesitecollection&gt;sites/&lt;/SPAN&gt;mikesitecollection&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;&amp;nbsp;and select the radio button to “Crawl only the SharePoint site of each start address”. If you put the same start address in a&amp;nbsp;Web Sites content source, it will go all the way to the top (&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 10pt; COLOR: blue; FONT-FAMILY: Verdana"&gt;&lt;A title="blocked::http://myserver.com/&amp;#13;&amp;#10;http://myserver.com/" href="blocked::http://myserver.com/" mce_href="blocked::http://myserver.com/"&gt;http://myserver.com&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;) and start crawling because that is the default for all SharePoint content. &lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI class=MsoNormal style="COLOR: black"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;&lt;SPAN class=119353703-04122006&gt;Also&amp;nbsp;the Web Sites Content Source can figure out that the starting address is a SharePoint site from the response header during the crawl, and then switch protocol handlers for crawling.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Verdana&gt; &lt;/FONT&gt;&lt;/LI&gt;
&lt;LI class=MsoNormal style="COLOR: black"&gt;&lt;SPAN lang=EN-US style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;Of course, both content sources allow Full and Incremental Crawls and they both allow you to create schedules.&lt;/SPAN&gt;&lt;FONT face=Verdana size=2&gt; &lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: Verdana"&gt;Hope that helps.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: Verdana"&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;Thanks&lt;BR&gt;Mike&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=1224666" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/miketag/archive/tags/MOSS/default.aspx">MOSS</category><category domain="http://blogs.msdn.com/miketag/archive/tags/SharePoint/default.aspx">SharePoint</category><category domain="http://blogs.msdn.com/miketag/archive/tags/Search/default.aspx">Search</category><category domain="http://blogs.msdn.com/miketag/archive/tags/Content+Source/default.aspx">Content Source</category><category domain="http://blogs.msdn.com/miketag/archive/tags/Source/default.aspx">Source</category><category domain="http://blogs.msdn.com/miketag/archive/tags/Content/default.aspx">Content</category></item><item><title>Feature Comparisons in SharePoint Search Versions</title><link>http://blogs.msdn.com/miketag/archive/2006/12/04/feature-comparisons-in-sharepoint-search-versions.aspx</link><pubDate>Mon, 04 Dec 2006 09:11:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1202874</guid><dc:creator>miketag</dc:creator><slash:comments>2</slash:comments><comments>http://blogs.msdn.com/miketag/comments/1202874.aspx</comments><wfw:commentRss>http://blogs.msdn.com/miketag/commentrss.aspx?PostID=1202874</wfw:commentRss><description>&lt;P class=MsoNormal&gt;&lt;FONT size=2&gt;&lt;SPAN style="FONT-FAMILY: Verdana,sans-serif"&gt;I have been asked this question few times by my MOSS Search customers. Question being: What is the difference in features in WSS 3.0, MOSS 2007 and Office SharePoint Server 2007 for Search?&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;FONT size=2&gt;&lt;SPAN style="FONT-FAMILY: Verdana,sans-serif"&gt;One thing to note is that the Search in the 3 products are&lt;/SPAN&gt;&lt;/FONT&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Verdana','sans-serif'"&gt; all based on the same Microsoft Search core indexing engine. However, there are differences between the 3 SharePoint search versions. This table does a comparison of features in the 3 products:&lt;/SPAN&gt;&lt;BR&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE class=MsoNormalTable style="BACKGROUND: #ffffcc" borderColorDark=#0000ff cellPadding=0 width="84%" borderColorLight=#0000ff border=1 class="MsoNormalTable"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 237px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;B&gt;&lt;SPAN style="COLOR: maroon; FONT-FAMILY: 'Verdana','sans-serif'"&gt;Feature &lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 274px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;B&gt;&lt;SPAN style="COLOR: maroon; FONT-FAMILY: 'Verdana','sans-serif'"&gt;Search in WSS 3.0 &lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 305px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;B&gt;&lt;SPAN style="COLOR: maroon; FONT-FAMILY: 'Verdana','sans-serif'"&gt;Office SharePoint Server 2007 for Search &lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 321px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;B&gt;&lt;SPAN style="COLOR: maroon; FONT-FAMILY: 'Verdana','sans-serif'"&gt;Enterprise Search in MOSS 2007 &lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 237px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Verdana','sans-serif'"&gt;What can be indexed&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 274px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'"&gt;&lt;FONT size=1&gt;Local SharePoint content&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 305px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'"&gt;&lt;FONT size=1&gt;SharePoint sites, Microsoft Exchange Server content, file shares, Lotus notes, custom content.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 321px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'"&gt;&lt;FONT size=1&gt;SharePoint sites, Microsoft Exchange Server content, file shares, Lotus notes, custom content, line-of-business (LOB) content.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 237px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Verdana','sans-serif'"&gt;Rich, relevant results&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 274px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'"&gt;&lt;FONT size=1&gt;Yes&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 305px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'"&gt;&lt;FONT size=1&gt;Yes&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 321px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'"&gt;&lt;FONT size=1&gt;Yes&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 237px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Verdana','sans-serif'"&gt;Alerts&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Verdana','sans-serif'"&gt;RSS&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Verdana','sans-serif'"&gt;Did you mean?&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Verdana','sans-serif'"&gt;Collapsing of duplicates &lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 274px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'"&gt;&lt;FONT size=1&gt;Yes to all&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 305px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'"&gt;&lt;FONT size=1&gt;Yes to all&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 321px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'"&gt;&lt;FONT size=1&gt;Yes to all&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 237px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Verdana','sans-serif'"&gt;Best bets&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Verdana','sans-serif'"&gt;Results removal, Query reports&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 274px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'"&gt;&lt;FONT size=1&gt;No to all&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 305px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'"&gt;&lt;FONT size=1&gt;Yes to all&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 321px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'"&gt;&lt;FONT size=1&gt;Yes to all&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 237px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Verdana','sans-serif'"&gt;Search Center / Tabs&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 274px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'"&gt;&lt;FONT size=1&gt;No&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 305px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'"&gt;&lt;FONT size=1&gt;Search Center without Tabs&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 321px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'"&gt;&lt;FONT size=1&gt;Search Center with Tabs&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 237px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Verdana','sans-serif'"&gt;People search&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Verdana','sans-serif'"&gt;Knowledge network&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 274px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'"&gt;&lt;FONT size=1&gt;No to all&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 305px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'"&gt;&lt;FONT size=1&gt;Yes to all&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 321px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'"&gt;&lt;FONT size=1&gt;Yes to all&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 237px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Verdana','sans-serif'"&gt;Business Data Search&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 274px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'"&gt;&lt;FONT size=1&gt;No&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 305px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'"&gt;&lt;FONT size=1&gt;No&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 321px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'"&gt;&lt;FONT size=1&gt;Yes&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 237px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Verdana','sans-serif'"&gt;Query Web service&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 274px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;SPAN style="FONT-FAMILY: Verdana,sans-serif"&gt;&lt;FONT size=1&gt;http://&amp;lt;site&amp;gt;/_vti_bin/spsearch.asmx&lt;/FONT&gt;&lt;FONT size=1&gt; &lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 305px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;SPAN style="FONT-FAMILY: Verdana,sans-serif"&gt;&lt;FONT size=1&gt;http://&amp;lt;site&amp;gt;/_vti_bin/search.asmx&lt;/FONT&gt;&lt;FONT size=1&gt; &lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 321px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;SPAN style="FONT-FAMILY: Verdana,sans-serif"&gt;&lt;FONT size=1&gt;http://&amp;lt;site&amp;gt;/_vti_bin/search.asmx&lt;/FONT&gt;&lt;FONT size=1&gt; &lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 237px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Verdana','sans-serif'"&gt;Security trimming of search results&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 274px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'"&gt;&lt;FONT size=1&gt;Yes; supports default security trimming only&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 305px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'"&gt;&lt;FONT size=1&gt;Yes; supports default security trimming only&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 321px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'"&gt;&lt;FONT size=1&gt;Yes; supports default and custom security trimming&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 237px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Verdana','sans-serif'"&gt;Query syntax&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 274px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'"&gt;&lt;SPAN style="COLOR: black"&gt;&lt;FONT size=1&gt;Windows SharePoint Services 3.0 Search SQL Syntax&lt;/FONT&gt;&lt;/SPAN&gt;&lt;FONT size=1&gt; &lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'"&gt;&lt;SPAN style="COLOR: black"&gt;&lt;FONT size=1&gt;Windows SharePoint Services 3.0 Search Keyword Syntax&lt;/FONT&gt;&lt;/SPAN&gt;&lt;FONT size=1&gt; &lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'"&gt;&lt;FONT size=1&gt;URL syntax&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 305px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'"&gt;&lt;SPAN style="COLOR: black"&gt;&lt;FONT size=1&gt;Enterprise Search SQL Syntax Reference&lt;/FONT&gt;&lt;/SPAN&gt;&lt;FONT size=1&gt; &lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'"&gt;&lt;SPAN style="COLOR: black"&gt;&lt;FONT size=1&gt;Enterprise Search Keyword Syntax Reference&lt;/FONT&gt;&lt;/SPAN&gt;&lt;FONT size=1&gt; &lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'"&gt;&lt;SPAN style="COLOR: black"&gt;&lt;FONT size=1&gt;Enterprise Search URL Syntax Reference&lt;/FONT&gt;&lt;/SPAN&gt;&lt;FONT size=1&gt; &lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; WIDTH: 321px; PADDING-TOP: 0.75pt"&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'"&gt;&lt;SPAN style="COLOR: black"&gt;&lt;FONT size=1&gt;Enterprise Search SQL Syntax Reference&lt;/FONT&gt;&lt;/SPAN&gt;&lt;FONT size=1&gt; &lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'"&gt;&lt;SPAN style="COLOR: black"&gt;&lt;FONT size=1&gt;Enterprise Search Keyword Syntax Reference&lt;/FONT&gt;&lt;/SPAN&gt;&lt;FONT size=1&gt; &lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="TEXT-ALIGN: center" align=center&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'"&gt;&lt;SPAN style="COLOR: black"&gt;&lt;FONT size=1&gt;Enterprise Search URL Syntax Reference&lt;/FONT&gt;&lt;/SPAN&gt;&lt;FONT size=1&gt; &lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Verdana','sans-serif'"&gt;For more information, please see this article in the MOSS SDK: &lt;A href="http://msdn2.microsoft.com/en-us/library/aa981559.aspx" mce_href="http://msdn2.microsoft.com/en-us/library/aa981559.aspx"&gt;http://msdn2.microsoft.com/en-us/library/aa981559.aspx&lt;/A&gt; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;FONT size=2&gt;&lt;SPAN style="FONT-FAMILY: Verdana,sans-serif"&gt;Hope that helps,&lt;BR&gt;Mike&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=1202874" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/miketag/archive/tags/MOSS/default.aspx">MOSS</category><category domain="http://blogs.msdn.com/miketag/archive/tags/SharePoint/default.aspx">SharePoint</category><category domain="http://blogs.msdn.com/miketag/archive/tags/WSS/default.aspx">WSS</category><category domain="http://blogs.msdn.com/miketag/archive/tags/Search/default.aspx">Search</category><category domain="http://blogs.msdn.com/miketag/archive/tags/Features/default.aspx">Features</category><category domain="http://blogs.msdn.com/miketag/archive/tags/Comparisons/default.aspx">Comparisons</category><category domain="http://blogs.msdn.com/miketag/archive/tags/Microsoft/default.aspx">Microsoft</category></item><item><title>Tool to export and import MOSS Search Configurations from one SSP to another</title><link>http://blogs.msdn.com/miketag/archive/2006/12/04/tool-to-export-and-import-moss-search-configurations-from-one-ssp-to-another.aspx</link><pubDate>Mon, 04 Dec 2006 06:54:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1202527</guid><dc:creator>miketag</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/miketag/comments/1202527.aspx</comments><wfw:commentRss>http://blogs.msdn.com/miketag/commentrss.aspx?PostID=1202527</wfw:commentRss><description>&lt;P&gt;&lt;FONT face=Verdana size=2&gt;I just wanted to let the readers know of a tool that allows taking MOSS Search settings from one SSP to another.&lt;/FONT&gt;&lt;SPAN lang=EN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt; This tool written by Angus Logan, can take the output of Search settings from one MOSS SSP and import them into another SSP. This eliminates errors and saves time when deploying Search settings from one environment to another. Such as Development --&amp;gt; Staging/QA --&amp;gt; Production.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=2&gt;&lt;SPAN style="FONT-FAMILY: Verdana"&gt;C&lt;/SPAN&gt;&lt;/FONT&gt;&lt;SPAN lang=EN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;heck it out at: &lt;A href="http://blogs.msdn.com/angus_logan/archive/2006/11/16/tool-to-export-and-import-search-configurations-from-an-ssp-in-moss.aspx" mce_href="http://blogs.msdn.com/angus_logan/archive/2006/11/16/tool-to-export-and-import-search-configurations-from-an-ssp-in-moss.aspx"&gt;http://blogs.msdn.com/angus_logan/archive/2006/11/16/tool-to-export-and-import-search-configurations-from-an-ssp-in-moss.aspx&lt;/A&gt; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;Hope that helps&lt;BR&gt;Mike&lt;/FONT&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=1202527" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/miketag/archive/tags/MOSS/default.aspx">MOSS</category><category domain="http://blogs.msdn.com/miketag/archive/tags/SharePoint/default.aspx">SharePoint</category><category domain="http://blogs.msdn.com/miketag/archive/tags/Search/default.aspx">Search</category><category domain="http://blogs.msdn.com/miketag/archive/tags/Microsoft/default.aspx">Microsoft</category><category domain="http://blogs.msdn.com/miketag/archive/tags/SSP/default.aspx">SSP</category></item><item><title>Finding out the Crawl Status of a piece of content in MOSS Search</title><link>http://blogs.msdn.com/miketag/archive/2006/12/01/finding-out-the-crawl-status-of-a-piece-of-content-in-moss-search.aspx</link><pubDate>Fri, 01 Dec 2006 10:10:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1181611</guid><dc:creator>miketag</dc:creator><slash:comments>2</slash:comments><comments>http://blogs.msdn.com/miketag/comments/1181611.aspx</comments><wfw:commentRss>http://blogs.msdn.com/miketag/commentrss.aspx?PostID=1181611</wfw:commentRss><description>&lt;P&gt;&lt;FONT face=Verdana size=2&gt;There is a great feature in MOSS Search that some folks may not know about. This is regarding finding out the status of an item in MOSS Search. For example, if you want to know if a site, a document or a link was crawled or not by MOSS Search, we have the feature called Crawl Logs.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;From the SharePoint Central Administration site, go to the SSP site. Click on Search Settings under Search, and then Crawl Logs. Before you go any deeper, there is a text box that allows you to enter any URLs that begin with the hostname/path that you want to enter, and it will give you the crawled status. See first screen shot below. However, this gets much more interesting, detailed and useful if you go deeper.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;Now click on any Host Name you have there under Crawled Content Status. Here you can find out the status of any item. You can filter on time/date, Content Sources, Status Type (Success, Warning or Error) and other criteria. This page tracks information about the status of crawled content in MOSS and can be very useful when you are trying to figure out if your content was crawled. See second screen shot below.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;For more info on this great feature, see the MOSS SDK. &lt;/FONT&gt;&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/photos/miketag/picture1181603.aspx" target=_blank mce_href="http://blogs.msdn.com/photos/miketag/picture1181603.aspx"&gt;&lt;IMG src="http://blogs.msdn.com/photos/miketag/images/1181603/thumb.aspx" border=0 mce_src="http://blogs.msdn.com/photos/miketag/images/1181603/thumb.aspx"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/photos/miketag/picture1181605.aspx" target=_blank mce_href="http://blogs.msdn.com/photos/miketag/picture1181605.aspx"&gt;&lt;IMG src="http://blogs.msdn.com/photos/miketag/images/1181605/thumb.aspx" border=0 mce_src="http://blogs.msdn.com/photos/miketag/images/1181605/thumb.aspx"&gt;&lt;/A&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=1181611" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/miketag/archive/tags/MOSS/default.aspx">MOSS</category><category domain="http://blogs.msdn.com/miketag/archive/tags/SharePoint/default.aspx">SharePoint</category><category domain="http://blogs.msdn.com/miketag/archive/tags/Search/default.aspx">Search</category><category domain="http://blogs.msdn.com/miketag/archive/tags/Microsoft/default.aspx">Microsoft</category><category domain="http://blogs.msdn.com/miketag/archive/tags/Logs/default.aspx">Logs</category><category domain="http://blogs.msdn.com/miketag/archive/tags/Crawl/default.aspx">Crawl</category></item><item><title>MOSS Search - Some Microsoft Links</title><link>http://blogs.msdn.com/miketag/archive/2006/12/01/moss-related-search-links.aspx</link><pubDate>Fri, 01 Dec 2006 09:21:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1181506</guid><dc:creator>miketag</dc:creator><slash:comments>3</slash:comments><comments>http://blogs.msdn.com/miketag/comments/1181506.aspx</comments><wfw:commentRss>http://blogs.msdn.com/miketag/commentrss.aspx?PostID=1181506</wfw:commentRss><description>&lt;P&gt;&lt;FONT face=Verdana size=2&gt;I have been compiling links to current documents/links/articles on Mcirosoft related sites regarding Microsoft Office SharePoint Server 2007 Search. I am sure there are more links out there, but this is a good list to start with:&lt;/FONT&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT face=Verdana size=2&gt;MOSS 2007 Search Overview in SDK: &lt;A href="http://msdn2.microsoft.com/en-us/library/ms495418.aspx" mce_href="http://msdn2.microsoft.com/en-us/library/ms495418.aspx"&gt;http://msdn2.microsoft.com/en-us/library/ms495418.aspx&lt;/A&gt; &lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT face=Verdana size=2&gt;Searching in MOSS in SDK: &lt;A href="http://msdn2.microsoft.com/en-us/library/ms497338.aspx" mce_href="http://msdn2.microsoft.com/en-us/library/ms497338.aspx"&gt;http://msdn2.microsoft.com/en-us/library/ms497338.aspx&lt;/A&gt; &lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT face=Verdana size=2&gt;Configure MOSS Search Service at TechNet: &lt;A href="http://technet2.microsoft.com/Office/en-us/library/b28ba53d-a3e8-440f-9fcb-f592d858894a1033.mspx?mfr=true" mce_href="http://technet2.microsoft.com/Office/en-us/library/b28ba53d-a3e8-440f-9fcb-f592d858894a1033.mspx?mfr=true"&gt;http://technet2.microsoft.com/Office/en-us/library/b28ba53d-a3e8-440f-9fcb-f592d858894a1033.mspx?mfr=true&lt;/A&gt; &lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT face=Verdana size=2&gt;Plan for Performance and Capacity in MOSS at TechNet: &lt;A href="http://technet2.microsoft.com/Office/en-us/library/eb2493e8-e498-462a-ab5d-1b779529dc471033.mspx?mfr=true" mce_href="http://technet2.microsoft.com/Office/en-us/library/eb2493e8-e498-462a-ab5d-1b779529dc471033.mspx?mfr=true"&gt;http://technet2.microsoft.com/Office/en-us/library/eb2493e8-e498-462a-ab5d-1b779529dc471033.mspx?mfr=true&lt;/A&gt; &lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT face=Verdana size=2&gt;Plan MOSS Search at TechNet: &lt;A href="http://technet2.microsoft.com/Office/en-us/library/2f237fcb-d8c5-4ccc-943b-25fb361f294d1033.mspx?mfr=true" mce_href="http://technet2.microsoft.com/Office/en-us/library/2f237fcb-d8c5-4ccc-943b-25fb361f294d1033.mspx?mfr=true"&gt;http://technet2.microsoft.com/Office/en-us/library/2f237fcb-d8c5-4ccc-943b-25fb361f294d1033.mspx?mfr=true&lt;/A&gt; &lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT face=Verdana size=2&gt;Security Considerations for Search in MOSS at TechNet: &lt;A href="http://technet2.microsoft.com/Office/en-us/library/b28ba53d-a3e8-440f-9fcb-f592d858894a1033.mspx?mfr=true" mce_href="http://technet2.microsoft.com/Office/en-us/library/b28ba53d-a3e8-440f-9fcb-f592d858894a1033.mspx?mfr=true"&gt;http://technet2.microsoft.com/Office/en-us/library/b28ba53d-a3e8-440f-9fcb-f592d858894a1033.mspx?mfr=true&lt;/A&gt; &lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT face=Verdana size=2&gt;TechNet Webcast: In Depth Look at MOSS Search: &lt;A href='http://www.microsoft.com/events/EventDetails.aspx?CMTYSvcSource=MSCOMMedia&amp;amp;Params=~CMTYDataSvcParams^~arg+Name="ID"+Value="1032305442"/^~arg+Name="ProviderID"+Value="A6B43178-497C-4225-BA42-DF595171F04C"/^~arg+Name="lang"+Value="en"/^~arg+Name="cr"+Value="US"/^~sParams^~/sParams^~/CMTYDataSvcParams^' mce_href='http://www.microsoft.com/events/EventDetails.aspx?CMTYSvcSource=MSCOMMedia&amp;amp;Params=~CMTYDataSvcParams^~arg+Name="ID"+Value="1032305442"/^~arg+Name="ProviderID"+Value="A6B43178-497C-4225-BA42-DF595171F04C"/^~arg+Name="lang"+Value="en"/^~arg+Name="cr"+Value="US"/^~sParams^~/sParams^~/CMTYDataSvcParams^'&gt;TechNet Webcast- An In-Depth Look at SharePoint Server 2007 Search Technology (Level 200)&lt;/A&gt; &lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;Hope that helps&lt;BR&gt;Mike&lt;/FONT&gt;&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=1181506" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/miketag/archive/tags/MOSS/default.aspx">MOSS</category><category domain="http://blogs.msdn.com/miketag/archive/tags/SharePoint/default.aspx">SharePoint</category><category domain="http://blogs.msdn.com/miketag/archive/tags/WSS/default.aspx">WSS</category><category domain="http://blogs.msdn.com/miketag/archive/tags/Search/default.aspx">Search</category><category domain="http://blogs.msdn.com/miketag/archive/tags/Microsoft/default.aspx">Microsoft</category><category domain="http://blogs.msdn.com/miketag/archive/tags/SDK/default.aspx">SDK</category><category domain="http://blogs.msdn.com/miketag/archive/tags/Links/default.aspx">Links</category></item><item><title>Microsoft Enterprise Search</title><link>http://blogs.msdn.com/miketag/archive/2006/12/01/moss-enterprise-search.aspx</link><pubDate>Fri, 01 Dec 2006 09:04:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1181472</guid><dc:creator>miketag</dc:creator><slash:comments>2</slash:comments><comments>http://blogs.msdn.com/miketag/comments/1181472.aspx</comments><wfw:commentRss>http://blogs.msdn.com/miketag/commentrss.aspx?PostID=1181472</wfw:commentRss><description>&lt;P&gt;&lt;FONT face=Verdana size=2&gt;I just wanted to make sure that folks are aware of some blog postings and links/whitepapers that Microsoft has today regarding Enterprise Search:&lt;/FONT&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT face=Verdana size=2&gt;Start with this article by Arpan Shah on Enterprise Search: &lt;A href="http://blogs.msdn.com/arpans/archive/2005/11/15/492946.aspx" mce_href="http://blogs.msdn.com/arpans/archive/2005/11/15/492946.aspx"&gt;http://blogs.msdn.com/arpans/archive/2005/11/15/492946.aspx&lt;/A&gt; &lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT face=Verdana size=2&gt;Then read this article by him on Why choose Microsoft for Enterprise Search: &lt;A href="http://blogs.msdn.com/arpans/archive/2006/02/22/537653.aspx" mce_href="http://blogs.msdn.com/arpans/archive/2006/02/22/537653.aspx"&gt;http://blogs.msdn.com/arpans/archive/2006/02/22/537653.aspx&lt;/A&gt; &lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT face=Verdana size=2&gt;Then read his next article on Microsoft Enterprise Search 101: &lt;A href="http://blogs.msdn.com/arpans/archive/2006/07/29/682715.aspx" mce_href="http://blogs.msdn.com/arpans/archive/2006/07/29/682715.aspx"&gt;http://blogs.msdn.com/arpans/archive/2006/07/29/682715.aspx&lt;/A&gt; &lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;Also take a look at Microsoft's Enterprise Search page at: &lt;A href="http://www.microsoft.com/livesearch/default.mspx" mce_href="http://www.microsoft.com/livesearch/default.mspx"&gt;http://www.microsoft.com/livesearch/default.mspx&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;Also take a look at Windows Desktop Search home page at: &lt;A href="http://www.microsoft.com/windows/desktopsearch/default.mspx" mce_href="http://www.microsoft.com/windows/desktopsearch/default.mspx"&gt;http://www.microsoft.com/windows/desktopsearch/default.mspx&lt;/A&gt; &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;Also look at Microsoft Office SharePoint Server 2007 at: &lt;A href="http://office.microsoft.com/en-us/sharepointserver/default.aspx" mce_href="http://office.microsoft.com/en-us/sharepointserver/default.aspx"&gt;http://office.microsoft.com/en-us/sharepointserver/default.aspx&lt;/A&gt; &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;There is also a great whitepaper at: &lt;A href="http://download.microsoft.com/download/6/b/3/6b303b61-dbf9-4d20-907c-c8d7213d112b/May%202006%20Enterprise%20Search%20Whitepaper.doc" mce_href="http://download.microsoft.com/download/6/b/3/6b303b61-dbf9-4d20-907c-c8d7213d112b/May%202006%20Enterprise%20Search%20Whitepaper.doc"&gt;http://download.microsoft.com/download/6/b/3/6b303b61-dbf9-4d20-907c-c8d7213d112b/May%202006%20Enterprise%20Search%20Whitepaper.doc&lt;/A&gt; &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;Hope that helps&lt;BR&gt;Mike&lt;/FONT&gt;&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=1181472" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/miketag/archive/tags/MOSS/default.aspx">MOSS</category><category domain="http://blogs.msdn.com/miketag/archive/tags/SharePoint/default.aspx">SharePoint</category><category domain="http://blogs.msdn.com/miketag/archive/tags/Search/default.aspx">Search</category><category domain="http://blogs.msdn.com/miketag/archive/tags/Microsoft/default.aspx">Microsoft</category><category domain="http://blogs.msdn.com/miketag/archive/tags/SDK/default.aspx">SDK</category><category domain="http://blogs.msdn.com/miketag/archive/tags/Links/default.aspx">Links</category><category domain="http://blogs.msdn.com/miketag/archive/tags/Enterprise/default.aspx">Enterprise</category></item></channel></rss>