<?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>Shawson&#039;s Code Blog &#187; sql server agent</title>
	<atom:link href="http://codeblog.shawson.co.uk/tag/sql-server-agent/feed/" rel="self" type="application/rss+xml" />
	<link>http://codeblog.shawson.co.uk</link>
	<description>development notes for my failing memory</description>
	<lastBuildDate>Tue, 15 May 2012 15:22:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Full Text Reindex, scheduled job has no steps!</title>
		<link>http://codeblog.shawson.co.uk/full-text-reindex-scheduled-job-has-no-steps/</link>
		<comments>http://codeblog.shawson.co.uk/full-text-reindex-scheduled-job-has-no-steps/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 10:26:32 +0000</pubDate>
		<dc:creator>shawson</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[full text index]]></category>
		<category><![CDATA[scheduled maintenance]]></category>
		<category><![CDATA[sql server agent]]></category>

		<guid isPermaLink="false">http://www.shawson.co.uk/codeblog/?p=446</guid>
		<description><![CDATA[We have a SQL Server 2005 box, on which we have a database which has a full text index. The database gets a massive refresh of its data each night, meaning the full text index needs rebuilding. I added a schedule to my full text index (Databases &#62; [DBName] &#62; Storage &#62; Full Text Catalogs [...]


Related posts:<ul><li><a href='http://codeblog.shawson.co.uk/how-to-run-sql-profiler-against-local-sql-express-instances/' rel='bookmark' title='How to run SQL Profiler against local SQL Express instances'>How to run SQL Profiler against local SQL Express instances</a></li>
<li><a href='http://codeblog.shawson.co.uk/grant-execute-permissions-for-all-sprocs-on-sql-2005/' rel='bookmark' title='Grant Execute Permissions for all sprocs on SQL 2005'>Grant Execute Permissions for all sprocs on SQL 2005</a></li>
<li><a href='http://codeblog.shawson.co.uk/sql-2000-font/' rel='bookmark' title='SQL 2000 Font!'>SQL 2000 Font!</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p>We have a SQL Server 2005 box, on which we have a database which has a full text index.  The database gets a massive refresh of its data each night, meaning the full text index needs rebuilding.  I added a schedule to my full text index (Databases &gt; [DBName] &gt; Storage &gt; Full Text Catalogs &gt; Right click your index &#8211; click properties &gt; Population Schedule) and this created me a new job (SQL Server Agent &gt; Jobs) but when i opened it up and went to steps, nothing was there!  If i tried running the job it would fail because there are no steps!</p>
<p>I found this as a <a href="https://connect.microsoft.com/SQLServer/feedback/ViewFeedback.aspx?FeedbackID=257786&amp;wa=wsignin1.0#tabs">documented bug in the initial release candidate of sql 2005</a> (since fixed in the service packs) on the microsoft connect site, and added a workaround &#8211; basically just add your own job, using the following sql (<a href="http://msdn.microsoft.com/en-us/library/ms176095.aspx">which i found on msdn</a>) to rebuild your index;</p>
<pre class="brush: sql">
ALTER FULLTEXT CATALOG [catalogue_name] REBUILD;
</pre>
<p>Of course, this is only a workaround until we can get the latest service pack installed.</p>


<p>Related posts:<ul><li><a href='http://codeblog.shawson.co.uk/how-to-run-sql-profiler-against-local-sql-express-instances/' rel='bookmark' title='How to run SQL Profiler against local SQL Express instances'>How to run SQL Profiler against local SQL Express instances</a></li>
<li><a href='http://codeblog.shawson.co.uk/grant-execute-permissions-for-all-sprocs-on-sql-2005/' rel='bookmark' title='Grant Execute Permissions for all sprocs on SQL 2005'>Grant Execute Permissions for all sprocs on SQL 2005</a></li>
<li><a href='http://codeblog.shawson.co.uk/sql-2000-font/' rel='bookmark' title='SQL 2000 Font!'>SQL 2000 Font!</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://codeblog.shawson.co.uk/full-text-reindex-scheduled-job-has-no-steps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

