<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Hagenberg Software Blog &#187; Suche</title>
	<atom:link href="http://blog.hagenberg-software.at/tag/suche/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.hagenberg-software.at</link>
	<description>Hagenberg Software blogs about software, Microsoft and SharePoint</description>
	<lastBuildDate>Mon, 21 Nov 2011 10:56:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Windows SharePoint Services Search will not start (stuck in state &#8220;starting&#8221;)</title>
		<link>http://blog.hagenberg-software.at/2009/09/windows-sharepoint-services-search-will-not-start-stuck-in-state-starting/</link>
		<comments>http://blog.hagenberg-software.at/2009/09/windows-sharepoint-services-search-will-not-start-stuck-in-state-starting/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 09:00:53 +0000</pubDate>
		<dc:creator>Bernhard Rastorfer</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[MOSS]]></category>
		<category><![CDATA[Suche]]></category>

		<guid isPermaLink="false">http://blog.hagenberg-software.at/?p=240</guid>
		<description><![CDATA[Yesterday I tried to move alle our MOSS Databases to a new SQL-Server 2008. Unfortunatly moving the ConfigDB did not work as expected, so I had to create a new Serverfarm and assign the ContentDB to this new farm. Everything worked well, but when trying to configure the Windows SharePoint Services Search the service stuck [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I tried to move alle our MOSS Databases to a new SQL-Server 2008. Unfortunatly moving the ConfigDB did not work as expected, so I had to create a new Serverfarm and assign the ContentDB to this new farm. Everything worked well, but when trying to configure the <strong>Windows SharePoint Services Search</strong> the service stuck in the state<strong> &#8220;starting&#8221; in Central Administration</strong>. It was not possible to stop the service or change the data of the service.</p>
<p>First I tried to restart the service in Windows Service Management, but that had no effect. After trying for some time, I found a stsadm command to stop the service:</p>
<p><strong>stsadm -o spsearch -action stop</strong></p>
<p>This deactivated the service in Windows Service Management and it was possible to start the service in Central Administation. Bevor doing so, I deleted the associated Search DB (WSS_Search or something). After starting a FullCrawl in SSP, everything worked fine.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hagenberg-software.at/2009/09/windows-sharepoint-services-search-will-not-start-stuck-in-state-starting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Problems and hints concerning SharePoint Search</title>
		<link>http://blog.hagenberg-software.at/2009/09/problems-and-hints-concerning-sharepoint-search/</link>
		<comments>http://blog.hagenberg-software.at/2009/09/problems-and-hints-concerning-sharepoint-search/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 11:54:35 +0000</pubDate>
		<dc:creator>Melanie Salomon</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Software Entwicklung]]></category>
		<category><![CDATA[MOSS]]></category>
		<category><![CDATA[Suche]]></category>

		<guid isPermaLink="false">http://blog.hagenberg-software.at/?p=220</guid>
		<description><![CDATA[Problems with search queries (sql syntax) 1) Problem using Boolean values If you are querying a boolean property, there are problems when using a comparison like isDocument = true It turned out that this doesn&#8217;t work correctly &#8211; a workaround is to simply use isDocument != false This issue is also described in a comment at [...]]]></description>
			<content:encoded><![CDATA[<h3><strong>Problems with search queries (sql syntax)</strong><strong> </strong></h3>
<h4><strong>1) Problem using Boolean  values</strong></h4>
<p>If you are querying a boolean property, there are problems  when using a comparison like</p>
<p><code>isDocument = true</code></p>
<p>It turned out that  this doesn&#8217;t work correctly &#8211; a workaround is to simply use</p>
<p><code>isDocument  != false</code></p>
<p>This issue is also described in a comment <a href="http://msdn.microsoft.com/en-us/library/ms541692.aspx" target="_blank">at  the msdn</a>.</p>
<h4><strong>2) Problem using OR</strong></h4>
<p>If you are using an  OR clause in your query and one of the columns in this clause does not exist or  has a null value in a result item, this item is not returned in the search even  if the other value in the OR clause matches (!!).</p>
<p>This issue is described  in detail in <a href="http://www.sharepointblogs.com/smc750/archive/2007/06/20/custom-cross-list-search-development-pitfalls-part-two.aspx" target="_blank">this blog entry</a>.</p>
<h3><strong>Row Limit</strong></h3>
<p>Another pitfall concerning search queries is the  following:</p>
<p>The RowLimit property of the SPQuery class is set to 50 by  default &#8211; so if you don&#8217;t change this to 0 (unlimited) the search will always  return 50 elements at most.</p>
<h3><strong><span>Get Folders and Items</span></strong></h3>
<p>When  using the method list.GetItems(query) only the items of the top folder are  returned by default (and no folder items!). If you need to return all elements  including the folder items you can use the following attribute of the SPQuery  class:</p>
<p><code>query.ViewAttributes += " Scope=\"RecursiveAll\"";</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hagenberg-software.at/2009/09/problems-and-hints-concerning-sharepoint-search/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bing goes Twitter</title>
		<link>http://blog.hagenberg-software.at/2009/09/bing-goes-twitter/</link>
		<comments>http://blog.hagenberg-software.at/2009/09/bing-goes-twitter/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 06:13:57 +0000</pubDate>
		<dc:creator>Christian Kiesewetter</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Suche]]></category>

		<guid isPermaLink="false">http://blog.hagenberg-software.at/?p=161</guid>
		<description><![CDATA[Mit bingtweets versucht die Suchmaschine aus Redmond weiteres Terrain zu erobern. Neben der klassischen Anzeige von Suchergebnissen werden in Echtzeit auch Tweets von Twitter angezeigt. Derzeit befindet sich die von Microsoft und Federated Media gemeinsam entwickelte Applikation noch im Betastadium zeigt aber schon erste Einblicke in welche Richtung es gehen wird. Neben einer Auflistung der [...]]]></description>
			<content:encoded><![CDATA[<p>Mit <a href="http://bingtweets.com/" target="_blank">bingtweets</a> versucht die Suchmaschine aus Redmond weiteres Terrain zu erobern. Neben der klassischen Anzeige von Suchergebnissen werden in Echtzeit auch Tweets von <a href="http://www.twitter.com" target="_blank">Twitter</a> angezeigt.</p>
<p>Derzeit befindet sich die von <a href="http://www.microsoft.com" target="_blank">Microsoft</a> und <a href="http://www.federatedmedia.net/" target="_blank">Federated Media</a> gemeinsam entwickelte Applikation noch im Betastadium zeigt aber schon erste Einblicke in welche Richtung es gehen wird. Neben einer Auflistung der <a href="http://www.bing.com" target="_blank">Bing</a> Suchergebnissen, der Anzeige aktuell, populärer Twitter Themen via Tagcloud sowie der Auflistung von Realtime Tweets (übrigens alles derzeit ohne Werbung) gibt es die Möglichkeit die Suchergebnisse mit <a href="http://www.twitter.com" target="_blank">Twitter</a> direkt weiterzuverbreiten.</p>
<div id="attachment_184" class="wp-caption alignnone" style="width: 406px"><img class="size-full wp-image-184  " title="bingtweets" src="http://blog.hagenberg-software.at/wp-content/uploads/2009/09/bingtweets.jpg" alt="Screenshot von bingtweets" width="396" height="289" /><p class="wp-caption-text">Screenshot von bingtweets</p></div>
<p>Ob es reicht damit <a href="http://www.google.com" target="_blank">Google</a> vom Thron der Suchmaschinenbetreiber zu stoßen? Zweifelhaft, aber es zeigt, dass sich auch Microsoft verstärkt mit neuen (Such-)Ansätzen ins Gespräch bringen will und den &#8220;Kampf&#8221; um die Suchkrone ernst nimmt.</p>
<p>Link zu bingtweets: <a href="http://bingtweets.com/" target="_blank">http://bingtweets.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hagenberg-software.at/2009/09/bing-goes-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Deutsche Bezeichnungen bei Suchdropdown in Sharepoint</title>
		<link>http://blog.hagenberg-software.at/2009/09/deutsche-bezeichnungen-bei-suchdropdown-in-sharepoint/</link>
		<comments>http://blog.hagenberg-software.at/2009/09/deutsche-bezeichnungen-bei-suchdropdown-in-sharepoint/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 07:57:34 +0000</pubDate>
		<dc:creator>Bernhard Rastorfer</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[MOSS]]></category>
		<category><![CDATA[Sprache]]></category>
		<category><![CDATA[Suche]]></category>
		<category><![CDATA[Übersetzung]]></category>

		<guid isPermaLink="false">http://blog.hagenberg-software.at/?p=127</guid>
		<description><![CDATA[Bei englischen Sharepoint Installationen hat man das Problem, dass rechts oben die Suche über &#8220;All Sites&#8221; und &#8220;People&#8221; möglich ist. Viele Kunden möchten das auf deutsch haben. Lösung: Die angezeigten Bezeichnungen kann man im SharedServiceProvider unter SearchScopes einstellen und auch noch andere definieren.]]></description>
			<content:encoded><![CDATA[<div>
<div>Bei englischen Sharepoint Installationen hat man das Problem, dass rechts  oben die Suche über &#8220;All Sites&#8221; und &#8220;People&#8221; möglich ist. Viele Kunden möchten das auf deutsch haben.</div>
<div><strong>Lösung:</strong> Die angezeigten Bezeichnungen kann man im SharedServiceProvider unter SearchScopes einstellen und auch noch andere definieren.</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.hagenberg-software.at/2009/09/deutsche-bezeichnungen-bei-suchdropdown-in-sharepoint/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

