<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Troubleshooting your FORMSOF &amp; INFLECTIONAL searches not working, SQL Server 2005</title>
	<atom:link href="http://www.intraspin.com/news/troubleshooting-your-formsof-inflectional-searches-not-working-sql-server-2005/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.intraspin.com/news/troubleshooting-your-formsof-inflectional-searches-not-working-sql-server-2005/</link>
	<description>Connecting you with your customers</description>
	<lastBuildDate>Mon, 08 Aug 2011 11:00:34 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: abhimanyu</title>
		<link>http://www.intraspin.com/news/troubleshooting-your-formsof-inflectional-searches-not-working-sql-server-2005/#comment-834</link>
		<dc:creator>abhimanyu</dc:creator>
		<pubDate>Wed, 15 Jun 2011 01:03:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.intraspin.com/webstrategyblog/troubleshooting-your-formsof-inflectional-searches-not-working-sql-server-2005#comment-834</guid>
		<description>my sql connection is not establishing in  sql server authentication.it is showing an error that the user is notassosiated with a trusted sql server connection</description>
		<content:encoded><![CDATA[<p>my sql connection is not establishing in  sql server authentication.it is showing an error that the user is notassosiated with a trusted sql server connection</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tyler Collier</title>
		<link>http://www.intraspin.com/news/troubleshooting-your-formsof-inflectional-searches-not-working-sql-server-2005/#comment-833</link>
		<dc:creator>Tyler Collier</dc:creator>
		<pubDate>Fri, 27 Aug 2010 23:23:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.intraspin.com/webstrategyblog/troubleshooting-your-formsof-inflectional-searches-not-working-sql-server-2005#comment-833</guid>
		<description>Thanks for two tips here.  One, the language.  I would&#039;ve thought the default &quot;Neutral&quot; language would have been acceptable, but alas, it was not.  Two, showing how to parameterize was good because I foolishly left my parameter within single quotes, so it looked like this at first:

contains(FieldName, &#039;FORMSOF (INFLECTIONAL, @SearchText) &#039;)

With your help, I realized this had to be changed to be more like yours where I put @SearchText, as well as the &#039;FORMSOF (INFLECTIONAL)&#039; portion inside another variable.

Thanks!</description>
		<content:encoded><![CDATA[<p>Thanks for two tips here.  One, the language.  I would&#8217;ve thought the default &#8220;Neutral&#8221; language would have been acceptable, but alas, it was not.  Two, showing how to parameterize was good because I foolishly left my parameter within single quotes, so it looked like this at first:</p>
<p>contains(FieldName, &#8216;FORMSOF (INFLECTIONAL, @SearchText) &#8216;)</p>
<p>With your help, I realized this had to be changed to be more like yours where I put @SearchText, as well as the &#8216;FORMSOF (INFLECTIONAL)&#8217; portion inside another variable.</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Abhang</title>
		<link>http://www.intraspin.com/news/troubleshooting-your-formsof-inflectional-searches-not-working-sql-server-2005/#comment-830</link>
		<dc:creator>Abhang</dc:creator>
		<pubDate>Thu, 22 Jan 2009 19:41:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.intraspin.com/webstrategyblog/troubleshooting-your-formsof-inflectional-searches-not-working-sql-server-2005#comment-830</guid>
		<description>Howdy,
Thanks dude. Actually the way I was building the query string was incorrect. I had too many ( and ) in the query. Just plain &#039;formsof(inflectional,used) and formsof(inflectional,chair)&#039; works. I am planning to create a Thesaurus for improving the search quality, lets see how that goes.</description>
		<content:encoded><![CDATA[<p>Howdy,<br />
Thanks dude. Actually the way I was building the query string was incorrect. I had too many ( and ) in the query. Just plain &#8216;formsof(inflectional,used) and formsof(inflectional,chair)&#8217; works. I am planning to create a Thesaurus for improving the search quality, lets see how that goes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Iain</title>
		<link>http://www.intraspin.com/news/troubleshooting-your-formsof-inflectional-searches-not-working-sql-server-2005/#comment-829</link>
		<dc:creator>Iain</dc:creator>
		<pubDate>Thu, 15 Jan 2009 11:13:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.intraspin.com/webstrategyblog/troubleshooting-your-formsof-inflectional-searches-not-working-sql-server-2005#comment-829</guid>
		<description>Hi Abhang, I&#039;m can&#039;t say for sure why you&#039;re query isn&#039;t working, but I see several differences between your proposed query and the example I provide.

Firstly, you&#039;re using CONTAINS and not CONTAINSTABLE.  If you use CONTAINSTABLE, note that its joined using INNERJOIN to the table you&#039;re searching, and it&#039;s parameters are the table name, column names, and then your query.  

Finally, you&#039;re applying FORMSOF to each query term individually - in my example I put the whole query together, and that works fine for me.

Good luck, let me know how you get on.</description>
		<content:encoded><![CDATA[<p>Hi Abhang, I&#8217;m can&#8217;t say for sure why you&#8217;re query isn&#8217;t working, but I see several differences between your proposed query and the example I provide.</p>
<p>Firstly, you&#8217;re using CONTAINS and not CONTAINSTABLE.  If you use CONTAINSTABLE, note that its joined using INNERJOIN to the table you&#8217;re searching, and it&#8217;s parameters are the table name, column names, and then your query.  </p>
<p>Finally, you&#8217;re applying FORMSOF to each query term individually &#8211; in my example I put the whole query together, and that works fine for me.</p>
<p>Good luck, let me know how you get on.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Abhang</title>
		<link>http://www.intraspin.com/news/troubleshooting-your-formsof-inflectional-searches-not-working-sql-server-2005/#comment-828</link>
		<dc:creator>Abhang</dc:creator>
		<pubDate>Thu, 15 Jan 2009 10:45:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.intraspin.com/webstrategyblog/troubleshooting-your-formsof-inflectional-searches-not-working-sql-server-2005#comment-828</guid>
		<description>Hi there,
I am having a tough time with these indices. I believe I have all right installation for full text. A query like select * from Item
where contains(title, &#039;used and chair and pune&#039;) returns the result I want, but a query like select * from Item
where contains(title, &#039;((formsof(inflectional,used)) and (formsof(inflectional,chair)) and (formsof(inflectional,pune)))&#039;)

does not return anything. So is this something to do with the way inflectional keyword works? Any comments appreciated.</description>
		<content:encoded><![CDATA[<p>Hi there,<br />
I am having a tough time with these indices. I believe I have all right installation for full text. A query like select * from Item<br />
where contains(title, &#8216;used and chair and pune&#8217;) returns the result I want, but a query like select * from Item<br />
where contains(title, &#8216;((formsof(inflectional,used)) and (formsof(inflectional,chair)) and (formsof(inflectional,pune)))&#8217;)</p>
<p>does not return anything. So is this something to do with the way inflectional keyword works? Any comments appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean</title>
		<link>http://www.intraspin.com/news/troubleshooting-your-formsof-inflectional-searches-not-working-sql-server-2005/#comment-827</link>
		<dc:creator>Sean</dc:creator>
		<pubDate>Wed, 09 Apr 2008 21:21:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.intraspin.com/webstrategyblog/troubleshooting-your-formsof-inflectional-searches-not-working-sql-server-2005#comment-827</guid>
		<description>Is there a table that can be viewed to show what the variations of inflectional words are?  I need to do inflectional searches based upon a list of about 400 words, but I don&#039;t know if all of the words I&#039;m expecting to be found will be.</description>
		<content:encoded><![CDATA[<p>Is there a table that can be viewed to show what the variations of inflectional words are?  I need to do inflectional searches based upon a list of about 400 words, but I don&#8217;t know if all of the words I&#8217;m expecting to be found will be.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL Server 2005 Express Full-Text Search Setup Tutorial - Web Strategy Blog</title>
		<link>http://www.intraspin.com/news/troubleshooting-your-formsof-inflectional-searches-not-working-sql-server-2005/#comment-826</link>
		<dc:creator>SQL Server 2005 Express Full-Text Search Setup Tutorial - Web Strategy Blog</dc:creator>
		<pubDate>Wed, 09 Jan 2008 13:16:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.intraspin.com/webstrategyblog/troubleshooting-your-formsof-inflectional-searches-not-working-sql-server-2005#comment-826</guid>
		<description>[...] For each column, select the column, and select the appropriate language To understand why the language parameter is important, see my post on use of the FORMSOF and INFLECTIONAL keywords in SQL Full-Text Search [...] </description>
		<content:encoded><![CDATA[<p>[...] For each column, select the column, and select the appropriate language To understand why the language parameter is important, see my post on use of the FORMSOF and INFLECTIONAL keywords in SQL Full-Text Search [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk (Session started)

Served from: www.intraspin.com @ 2012-02-11 10:28:01 -->
