<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: SQL Server Full Text Search &#8211; The FullTextCatalogProperty Function</title>
	<atom:link href="http://arcanecode.com/2008/04/29/sql-server-full-text-search-the-fulltextcatalogproperty-function/feed/" rel="self" type="application/rss+xml" />
	<link>http://arcanecode.com/2008/04/29/sql-server-full-text-search-the-fulltextcatalogproperty-function/</link>
	<description>Making Microsoft .Net Development Magical</description>
	<lastBuildDate>Sat, 26 May 2012 09:32:21 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Vinod kumar kushawaha</title>
		<link>http://arcanecode.com/2008/04/29/sql-server-full-text-search-the-fulltextcatalogproperty-function/#comment-29135</link>
		<dc:creator><![CDATA[Vinod kumar kushawaha]]></dc:creator>
		<pubDate>Wed, 23 Mar 2011 06:50:03 +0000</pubDate>
		<guid isPermaLink="false">http://arcanecode.wordpress.com/2008/04/29/sql-server-full-text-search-the-fulltextcatalogproperty-function/#comment-29135</guid>
		<description><![CDATA[--1  Create the catalog (unless you already have)

EXEC sp_fulltext_catalog   &#039;FTCatalog&#039;,&#039;create&#039; 

--2  Add a full text index to a table 

EXEC sp_fulltext_table     &#039;Departments&#039;, &#039;create&#039;, &#039;FTCatalog&#039;, &#039;pk_departments&#039; 
EXEC sp_fulltext_table     &#039;Employees&#039;, &#039;create&#039;, &#039;FTCatalog&#039;, &#039;pk_employees&#039; 

--3  Add a column to the full text index 

EXEC sp_fulltext_column    &#039;Departments&#039;, &#039;ProductName&#039;, &#039;add&#039; 
EXEC sp_fulltext_column    &#039;Employees&#039;, &#039;Description&#039;, &#039;add&#039; 

--4  Activate the index 

EXEC sp_fulltext_table     &#039;Departments&#039;,&#039;activate&#039; 
EXEC sp_fulltext_table     &#039;Employees&#039;,&#039;activate&#039; 

--5  Start full population 

EXEC sp_fulltext_catalog   &#039;FTCatalog&#039;, &#039;start_full&#039;]]></description>
		<content:encoded><![CDATA[<p>&#8211;1  Create the catalog (unless you already have)</p>
<p>EXEC sp_fulltext_catalog   &#8216;FTCatalog&#8217;,'create&#8217; </p>
<p>&#8211;2  Add a full text index to a table </p>
<p>EXEC sp_fulltext_table     &#8216;Departments&#8217;, &#8216;create&#8217;, &#8216;FTCatalog&#8217;, &#8216;pk_departments&#8217;<br />
EXEC sp_fulltext_table     &#8216;Employees&#8217;, &#8216;create&#8217;, &#8216;FTCatalog&#8217;, &#8216;pk_employees&#8217; </p>
<p>&#8211;3  Add a column to the full text index </p>
<p>EXEC sp_fulltext_column    &#8216;Departments&#8217;, &#8216;ProductName&#8217;, &#8216;add&#8217;<br />
EXEC sp_fulltext_column    &#8216;Employees&#8217;, &#8216;Description&#8217;, &#8216;add&#8217; </p>
<p>&#8211;4  Activate the index </p>
<p>EXEC sp_fulltext_table     &#8216;Departments&#8217;,'activate&#8217;<br />
EXEC sp_fulltext_table     &#8216;Employees&#8217;,'activate&#8217; </p>
<p>&#8211;5  Start full population </p>
<p>EXEC sp_fulltext_catalog   &#8216;FTCatalog&#8217;, &#8216;start_full&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL Server Full Text Searching at the Atlanta Code Camp &#171; Arcane Code</title>
		<link>http://arcanecode.com/2008/04/29/sql-server-full-text-search-the-fulltextcatalogproperty-function/#comment-26536</link>
		<dc:creator><![CDATA[SQL Server Full Text Searching at the Atlanta Code Camp &#171; Arcane Code]]></dc:creator>
		<pubDate>Mon, 16 Mar 2009 04:41:24 +0000</pubDate>
		<guid isPermaLink="false">http://arcanecode.wordpress.com/2008/04/29/sql-server-full-text-search-the-fulltextcatalogproperty-function/#comment-26536</guid>
		<description><![CDATA[[...] you hear me now? Checking to see if FTS is installed. Exploring SQL Servers FullTextCatalogProperty Function Using the ObjectPropertyEx Function Using FORMSOF in SQL Server Full Text Searching Creating Custom [...]]]></description>
		<content:encoded><![CDATA[<p>[...] you hear me now? Checking to see if FTS is installed. Exploring SQL Servers FullTextCatalogProperty Function Using the ObjectPropertyEx Function Using FORMSOF in SQL Server Full Text Searching Creating Custom [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Creating Custom Thesaurus Entries in SQL Server 2005 and 2008 Full Text Search &#171; Arcane Code</title>
		<link>http://arcanecode.com/2008/04/29/sql-server-full-text-search-the-fulltextcatalogproperty-function/#comment-25385</link>
		<dc:creator><![CDATA[Creating Custom Thesaurus Entries in SQL Server 2005 and 2008 Full Text Search &#171; Arcane Code]]></dc:creator>
		<pubDate>Wed, 28 May 2008 06:01:37 +0000</pubDate>
		<guid isPermaLink="false">http://arcanecode.wordpress.com/2008/04/29/sql-server-full-text-search-the-fulltextcatalogproperty-function/#comment-25385</guid>
		<description><![CDATA[[...] want to do this when the engine is busy or in use. I have a recent blog post that talks about the SQL Server Full Text Catalog Property function. In it, I have this handy query for you to be able to tell what the full text service is [...]]]></description>
		<content:encoded><![CDATA[<p>[...] want to do this when the engine is busy or in use. I have a recent blog post that talks about the SQL Server Full Text Catalog Property function. In it, I have this handy query for you to be able to tell what the full text service is [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL Server Full Text Search &#8211; The ObjectPropertyEx Function &#171; Arcane Code</title>
		<link>http://arcanecode.com/2008/04/29/sql-server-full-text-search-the-fulltextcatalogproperty-function/#comment-25130</link>
		<dc:creator><![CDATA[SQL Server Full Text Search &#8211; The ObjectPropertyEx Function &#171; Arcane Code]]></dc:creator>
		<pubDate>Wed, 30 Apr 2008 11:35:57 +0000</pubDate>
		<guid isPermaLink="false">http://arcanecode.wordpress.com/2008/04/29/sql-server-full-text-search-the-fulltextcatalogproperty-function/#comment-25130</guid>
		<description><![CDATA[[...] SQL Server Full Text Search - The FullTextCatalogProperty&#160;Function  [...]]]></description>
		<content:encoded><![CDATA[<p>[...] SQL Server Full Text Search &#8211; The FullTextCatalogProperty&nbsp;Function  [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

