<?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>Codelab Blog &#187; SQL Server</title>
	<atom:link href="http://blog.codelab.co.nz/tag/sql-server/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.codelab.co.nz</link>
	<description>Technical Articles and News from Codelab Ltd</description>
	<lastBuildDate>Tue, 17 Jan 2012 13:10:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Determing SQL Server Table Size</title>
		<link>http://blog.codelab.co.nz/2010/09/03/determing-sql-server-table-size/</link>
		<comments>http://blog.codelab.co.nz/2010/09/03/determing-sql-server-table-size/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 04:03:52 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://blog.codelab.co.nz/?p=298</guid>
		<description><![CDATA[This is a bit of code I found that determines the size used by each table in your database. Make sure you run DBCC UPDATEUSAGE first to correct any incorrect stats (pages etc) on your tables. DBCC UPDATEUSAGE (YOUR DATABASE NAME) DECLARE @TableName VARCHAR(100) &#160; &#160;--For storing values in the cursor --Cursor to get the [...]]]></description>
			<content:encoded><![CDATA[<p>This is a bit of code I found that determines the size used by each table in your database.</p>
<p>Make sure you run DBCC UPDATEUSAGE first to correct any incorrect stats (pages etc) on your tables.</p>
<p>DBCC UPDATEUSAGE (YOUR DATABASE NAME)</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;height:300px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">DECLARE @TableName VARCHAR(100) &nbsp; &nbsp;--For storing values in the cursor<br />
<br />
--Cursor to get the name of all user tables from the sysobjects listing<br />
DECLARE tableCursor CURSOR<br />
FOR<br />
select [name]<br />
from dbo.sysobjects<br />
where &nbsp;OBJECTPROPERTY(id, N'IsUserTable') = 1<br />
FOR READ ONLY<br />
<br />
CREATE TABLE #TempTable<br />
(<br />
tableName varchar(100),<br />
numberofRows varchar(100),<br />
reservedSize varchar(50),<br />
dataSize varchar(50),<br />
indexSize varchar(50),<br />
unusedSize varchar(50)<br />
)<br />
<br />
OPEN tableCursor<br />
FETCH NEXT FROM tableCursor INTO @TableName<br />
<br />
WHILE (@@Fetch_Status &amp;gt;= 0)<br />
BEGIN<br />
INSERT &nbsp;#TempTable<br />
EXEC sp_spaceused @TableName<br />
FETCH NEXT FROM tableCursor INTO @TableName<br />
END<br />
<br />
CLOSE tableCursor<br />
DEALLOCATE tableCursor<br />
<br />
--Select all records so we can use the reults, ordered by biggest<br />
SELECT *<br />
FROM #TempTable<br />
ORDER BY CAST(LEFT(dataSize,LEN(dataSize)-3) AS NUMERIC(18,0)) DESC<br />
<br />
DROP TABLE #TempTable</div></div>
<p><em><strong>References:</strong></em></p>
<p><a href="http://www.mitchelsellers.com/blogs/articletype/articleview/articleid/121/determing-sql-server-table-size.aspx">http://www.mitchelsellers.com/blogs/articletype/articleview/articleid/121/determing-sql-server-table-size.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.codelab.co.nz/2010/09/03/determing-sql-server-table-size/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>You receive a &#8220;The incoming tabular data stream (TDS) remote procedure call (RPC) protocol stream is incorrect&#8221; exception when using NVarchar parameters with Sqlclient</title>
		<link>http://blog.codelab.co.nz/2010/08/26/you-receive-a-the-incoming-tabular-data-stream-tds-remote-procedure-call-rpc-protocol-stream-is-incorrect-exception-when-using-nvarchar-parameters-with-sqlclient/</link>
		<comments>http://blog.codelab.co.nz/2010/08/26/you-receive-a-the-incoming-tabular-data-stream-tds-remote-procedure-call-rpc-protocol-stream-is-incorrect-exception-when-using-nvarchar-parameters-with-sqlclient/#comments</comments>
		<pubDate>Thu, 26 Aug 2010 00:02:33 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[.NET Framework]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[.NET]]></category>

		<guid isPermaLink="false">http://blog.codelab.co.nz/?p=292</guid>
		<description><![CDATA[The problem I got the following random error: You receive a &#8220;The incoming tabular data stream (TDS) remote procedure call (RPC) protocol stream is incorrect&#8221; exception when using NVarchar parameters with Sqlclient The Solution Its a known bug with the .Net SqlClient Data Provider.   If you have a field in the database of type nvarchar(max) [...]]]></description>
			<content:encoded><![CDATA[<p>The problem</p>
<p>I got the following random error:<br />
</p>
<blockquote><p>You receive a &#8220;The incoming tabular data stream (TDS)  remote procedure call (RPC) protocol stream is incorrect&#8221; exception when  using NVarchar parameters with Sqlclient</p></blockquote>
<p>
The Solution</p>
<p>Its a known bug with the .Net SqlClient Data Provider.   If you have a field in the database of type nvarchar(max) or greater than 4000 characters and if the user enters data into the field greater than 4000 characters via the .Net SqlClient Data Provider you will receive an exception.</p>
<p>To get around this, reduce the field size to less that 4000 characters or change your type to ntext or set the Sqlparamter.size property to -1 to allow the entire data to be saved.</p>
<p><em><strong>References</strong></em></p>
<p><em><strong><br />
</strong></em><br />
<br />
<a href="http://support.microsoft.com/kb/970519">http://support.microsoft.com/kb/970519</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.codelab.co.nz/2010/08/26/you-receive-a-the-incoming-tabular-data-stream-tds-remote-procedure-call-rpc-protocol-stream-is-incorrect-exception-when-using-nvarchar-parameters-with-sqlclient/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clean your SQL Server database!</title>
		<link>http://blog.codelab.co.nz/2009/12/23/clean-your-sql-server-database/</link>
		<comments>http://blog.codelab.co.nz/2009/12/23/clean-your-sql-server-database/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 20:05:29 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[T-SQL]]></category>

		<guid isPermaLink="false">http://blog.codelab.co.nz/?p=164</guid>
		<description><![CDATA[Here are some lines of code that can help clean your database from test data so you can start over with a fresh canvas. /* Disable constraints and triggers (if any) */ exec sp_MSforeachtable &#8216;ALTER TABLE ? NOCHECK CONSTRAINT ALL&#8217; exec sp_MSforeachtable &#8216;ALTER TABLE ? DISABLE TRIGGER ALL&#8217; /*Perform delete operation on all table for [...]]]></description>
			<content:encoded><![CDATA[<p>Here are some lines of code that can help clean your database from test data so you can start over with a fresh canvas.</p>
<p>/* Disable constraints and triggers (if any) */</p>
<p>exec sp_MSforeachtable &#8216;ALTER TABLE ? NOCHECK CONSTRAINT ALL&#8217;<br />
exec sp_MSforeachtable &#8216;ALTER TABLE ? DISABLE TRIGGER ALL&#8217;</p>
<p>/*Perform delete operation on all table for cleanup, or you can put specific delete &lt;tablename&gt; commands if you want to only do a subset of deletions</p>
<p>*/<br />
exec sp_MSforeachtable &#8216;DELETE ?&#8217;</p>
<p>/*Enable Constraints &amp; Triggers again*/<br />
exec sp_MSforeachtable &#8216;ALTER TABLE ? CHECK CONSTRAINT ALL&#8217;<br />
exec sp_MSforeachtable &#8216;ALTER TABLE ? ENABLE TRIGGER ALL&#8217;</p>
<p>/*Reset Identity on tables with identity column*/<br />
exec sp_MSforeachtable &#8216;IF OBJECTPROPERTY(OBJECT_ID(&#8221;?&#8221;), &#8221;TableHasIdentity&#8221;) = 1 BEGIN DBCC CHECKIDENT (&#8221;?&#8221;,RESEED,0) END&#8217;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.codelab.co.nz/2009/12/23/clean-your-sql-server-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding the Length of an Image Field in SQL Server</title>
		<link>http://blog.codelab.co.nz/2009/11/19/finding-the-length-of-an-image-field-in-sql-server/</link>
		<comments>http://blog.codelab.co.nz/2009/11/19/finding-the-length-of-an-image-field-in-sql-server/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 03:24:18 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://blog.codelab.co.nz/?p=151</guid>
		<description><![CDATA[Problem: I need to know the size in bytes of an image stored in an Image field in SQL Server Solution: SELECT DATALENGTH(column) FROM table]]></description>
			<content:encoded><![CDATA[<p><strong>Problem:</strong> I need to know the size in bytes of an image stored in an Image field in SQL Server</p>
<p><strong>Solution:</strong> <span style="color: #0000ff; font-size: x-small;">SELECT</span><span style="font-size: x-small;"> </span><span style="color: #ff00ff; font-size: x-small;">DATALENGTH</span><span style="color: #808080; font-size: x-small;">(column</span><span style="color: #808080; font-size: x-small;">)</span><span style="font-size: x-small;"> </span><span style="color: #0000ff; font-size: x-small;">FROM</span><span style="font-size: x-small;"> table</span><span style="font-size: x-small;"></span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.codelab.co.nz/2009/11/19/finding-the-length-of-an-image-field-in-sql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Split Function for T-SQL using XML</title>
		<link>http://blog.codelab.co.nz/2009/07/29/split-function-for-t-sql-using-xml/</link>
		<comments>http://blog.codelab.co.nz/2009/07/29/split-function-for-t-sql-using-xml/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 02:11:28 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://blog.codelab.co.nz/?p=138</guid>
		<description><![CDATA[Here is some sample code to split a string and return the results via a table. CREATE FUNCTION [dbo].[split] ( @del char(1), @str varchar(max) ) RETURNS @tResult TABLE ( val varchar(max) ) AS BEGIN declare @xml xml set @xml = N&#8217;&#60;root&#62;&#60;r&#62;&#8217; + replace(@str,@del,&#8217;&#60;/r&#62;&#60;r&#62;&#8217;) + &#8216;&#60;/r&#62;&#60;/root&#62;&#8217; insert into @tResult(val) select r.value(&#8216;.&#8217;,'varchar(max)&#8217;) as item from @xml.nodes(&#8216;//root/r&#8217;) as [...]]]></description>
			<content:encoded><![CDATA[<p>Here is some sample code to split a string and return the results via a table.</p>
<p>CREATE FUNCTION [dbo].[split]<br />
(<br />
@del char(1),<br />
@str varchar(max)<br />
)<br />
RETURNS @tResult TABLE<br />
(<br />
val varchar(max)<br />
)<br />
AS<br />
BEGIN<br />
declare @xml xml<br />
set @xml = N&#8217;&lt;root&gt;&lt;r&gt;&#8217; + replace(@str,@del,&#8217;&lt;/r&gt;&lt;r&gt;&#8217;) + &#8216;&lt;/r&gt;&lt;/root&gt;&#8217;</p>
<p>insert into @tResult(val)<br />
select<br />
r.value(&#8216;.&#8217;,'varchar(max)&#8217;) as item<br />
from @xml.nodes(&#8216;//root/r&#8217;) as records(r)</p>
<p>RETURN<br />
END</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.codelab.co.nz/2009/07/29/split-function-for-t-sql-using-xml/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The specified &#8216;@subsystem&#8217; is invalid</title>
		<link>http://blog.codelab.co.nz/2009/04/08/subsysteminvalid/</link>
		<comments>http://blog.codelab.co.nz/2009/04/08/subsysteminvalid/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 23:29:08 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[DBA]]></category>

		<guid isPermaLink="false">http://blog.codelab.co.nz/?p=112</guid>
		<description><![CDATA[If you get the following error: Create maintenance plan failed. The specified &#8216;@subsystem&#8217; is invalid (valid values are returned by sp_enum_sqlagent_subsystems). (Microsoft SQL Server, Error 14234) Just install Integration Services (just a little job&#8230;) and reboot. References: http://support.microsoft.com/kb/909036/en-us]]></description>
			<content:encoded><![CDATA[<p>If you get the following error:</p>
<blockquote><p>Create 		  maintenance plan failed.</p>
<p>The specified &#8216;@subsystem&#8217; is 		  invalid (valid values are returned by sp_enum_sqlagent_subsystems). (Microsoft 		  SQL Server, Error 14234)</p></blockquote>
<p>Just install Integration Services (just a little job&#8230;) and reboot.</p>
<p><em><strong>References:</strong></em></p>
<p><a href="http://support.microsoft.com/kb/909036/en-us">http://support.microsoft.com/kb/909036/en-us</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.codelab.co.nz/2009/04/08/subsysteminvalid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Selecting a row position within a SELECT query</title>
		<link>http://blog.codelab.co.nz/2009/03/11/selecting-a-row-position-within-a-select-query/</link>
		<comments>http://blog.codelab.co.nz/2009/03/11/selecting-a-row-position-within-a-select-query/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 09:16:11 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[T-SQL]]></category>

		<guid isPermaLink="false">http://blog.codelab.co.nz/?p=91</guid>
		<description><![CDATA[I want to get the third row in a result set from the following: ID   Name 1   A 2  B 3  C 4 D You can acheive this by using the ROW_NUMBER() rank function using SQL Server 2005/2008.   The following code will return the 3rd record. create table #temp ( ID int, [Name] nvarchar(50) ) [...]]]></description>
			<content:encoded><![CDATA[<p>I want to get the third row in a result set from the following:</p>
<p>ID   Name</p>
<p>1   A</p>
<p>2  B</p>
<p>3  C</p>
<p>4 D</p>
<p>You can acheive this by using the ROW_NUMBER() rank function using SQL Server 2005/2008.   The following code will return the 3rd record.</p>
<p>create table #temp<br />
(<br />
ID int,<br />
[Name] nvarchar(50)<br />
)</p>
<p>insert into #temp values (1,&#8217;A')<br />
insert into #temp values (2,&#8217;B')<br />
insert into #temp values (3,&#8217;C')<br />
insert into #temp values (4,&#8217;D')<br />
insert into #temp values (5,&#8217;E')</p>
<p>select [Name] from #temp where ID in (select ID from<br />
(select ID, ROW_NUMBER() OVER (order by ID asc) as [Row] from #temp) as subquery<br />
where [Row] = 3)</p>
<p>drop table #temp</p>
<p>Result:</p>
<p>Name = C</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.codelab.co.nz/2009/03/11/selecting-a-row-position-within-a-select-query/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Server Express 2008 Maintenance Script</title>
		<link>http://blog.codelab.co.nz/2008/11/14/sql-server-express-2008-maintenance-script/</link>
		<comments>http://blog.codelab.co.nz/2008/11/14/sql-server-express-2008-maintenance-script/#comments</comments>
		<pubDate>Fri, 14 Nov 2008 02:01:05 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[T-SQL]]></category>

		<guid isPermaLink="false">http://blog.codelab.co.nz/?p=45</guid>
		<description><![CDATA[The issue I have with SQL Server Express Edition 2008 is that the SQL Agent is disabled and according to Microsoft, this has been disabled on purpose.   So, how do we schedule jobs to do such tasks as Rebuilding Indexes, Full-text Catalogs etc?   I use the Task Scheduler on Windows 2008 Server that executes a [...]]]></description>
			<content:encoded><![CDATA[<p>The issue I have with SQL Server Express Edition 2008 is that the SQL Agent is disabled and according to Microsoft, this has been disabled on purpose.   So, how do we schedule jobs to do such tasks as Rebuilding Indexes, Full-text Catalogs etc?   I use the Task Scheduler on Windows 2008 Server that executes a SQL script using sqlcmd -i &lt;database script&gt;</p>
<p>Here is the sample code that I use for Rebuilding indexes and catalogs:</p>
<blockquote><p>declare @databasename varchar(max)<br />
declare @cat varchar(max)</p>
<p>DECLARE database_cursor CURSOR FOR<br />
select name from master.sys.databases<br />
where database_id &gt; 4 &#8211;exclude system databases</p>
<p>OPEN database_cursor</p>
<p>FETCH NEXT FROM database_cursor<br />
INTO @databasename</p>
<p>WHILE @@FETCH_STATUS = 0<br />
BEGIN</p>
<p>BEGIN TRY<br />
&#8211;Below line rebuilds indexes<br />
exec (&#8216;USE &#8216; + @databasename + &#8216; EXEC sp_MSforeachtable @command1 = &#8220;ALTER INDEX ALL ON ? REBUILD WITH (FILLFACTOR = 80, SORT_IN_TEMPDB = ON,<br />
STATISTICS_NORECOMPUTE = ON);&#8221;&#8216;)</p>
<p>exec (&#8216;USE &#8216; + @databasename + &#8216; declare @cat varchar(max) select @cat = (select top 1 name from &#8216; + @databasename + &#8216;.sys.fulltext_catalogs) if @cat is not null begin exec (&#8221;ALTER FULLTEXT CATALOG &#8221; + @cat + &#8221; REBUILD WITH    ACCENT_SENSITIVITY=OFF;&#8221;) end&#8217;)</p>
<p>END TRY<br />
BEGIN CATCH<br />
DECLARE @ErrorMessage NVARCHAR(4000),<br />
@ErrorSeverity INT,<br />
@ErrorState INT</p>
<p>SET @ErrorMessage = &#8216; databasename: &#8216; + @databasename + &#8216; &#8216; + ERROR_MESSAGE();<br />
SET @ErrorSeverity = ERROR_SEVERITY();<br />
SET @ErrorState = ERROR_STATE();</p>
<p>&#8211;print @ErrorMessage<br />
RAISERROR(@ErrorMessage,@ErrorSeverity,@ErrorState);</p>
<p>END CATCH</p>
<p>FETCH NEXT FROM database_cursor<br />
INTO @databasename<br />
END</p>
<p>CLOSE database_cursor<br />
DEALLOCATE database_cursor<span id="more-45"></span></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.codelab.co.nz/2008/11/14/sql-server-express-2008-maintenance-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>“System Cannot Find Specified Path”</title>
		<link>http://blog.codelab.co.nz/2008/08/21/%e2%80%9csystem-cannot-find-specified-path%e2%80%9d/</link>
		<comments>http://blog.codelab.co.nz/2008/08/21/%e2%80%9csystem-cannot-find-specified-path%e2%80%9d/#comments</comments>
		<pubDate>Thu, 21 Aug 2008 08:50:57 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[DBA]]></category>

		<guid isPermaLink="false">http://blog.codelab.co.nz/?p=16</guid>
		<description><![CDATA[“System Cannot Find Specified Path” when trying to start a SQL Server instance after copying the instance from one machine to another My Scenario 1) Took a snap shot of our production database server using NTBackup 2) Converted the image to run on a virtual server 3) Booted the server with a new server name [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-size: 130%;"><strong><em>“System Cannot Find Specified Path”  when trying to start a SQL Server instance after copying the instance from one  machine to another</em></strong></span></p>
<p><span style="font-size: 130%;">My  Scenario</span></p>
<p>1) Took a snap shot of our production database server  using NTBackup<br />
2) Converted the image to run on a virtual server<br />
3) Booted  the server with a new server name and tried to start up the SQL Server  Instance</p>
<p>At this point, I ran into a critical  error:</p>
<blockquote><p><strong><em>“Error 3: the system cannot find the specified  path.”</em></strong></p></blockquote>
<p><span style="font-size: 130%;">The  Problem</span></p>
<p>After some investigation, I noticed that the paths for the  MSSQL$Instance and SQLAgent$Instance Windows Services had the old (8.3)  format.</p>
<blockquote><p><em>i.e  C:\PROGRA~1\MICROS~4\MSSQL\binn\sqlservr.exe&#8221;</em></p></blockquote>
<p><span style="font-size: 130%;">The Solution</span></p>
<p>I located the file path for  both of these services in the registry and changed them to their fully qualified  path.</p>
<blockquote><p><em>e.g.  HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MSSQLSERVER<br />
C:\Program  Files\Microsoft SQL Server\MSSQL$Instance\Binn\ sqlservr.exe</em></p></blockquote>
<p>I  rebooted the machine and started both services up with no problems.</p>
<p>This  is one of those problems where you could spend hours trying to find out what the  error means where in-fact such a simple solution is all that it  takes!</p>
<p><span style="font-size: 130%;">References</span></p>
<p><a href="http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=386678&amp;SiteID=1">http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=386678&amp;SiteID=1</a><br />
<a href="http://groups.google.co.nz/group/microsoft.public.sqlserver.server/&lt;br &gt;&lt;/a&gt; browse_thread/thread/e2fbca63a9b7367c/ca63aff756a2cada?hl=en&amp;lnk=st&amp;q=mssql+cannot+find+specified+path#ca63aff756a2cada"></p>
<p>http://groups.google.co.nz/group/microsoft.public.sqlserver.server/</p>
<p>browse_thread/thread/e2fbca63a9b7367c/ca63aff756a2cada?hl=en&amp;lnk=st&amp;q=mssql+cannot+find+specified+path#ca63aff756a2cada</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.codelab.co.nz/2008/08/21/%e2%80%9csystem-cannot-find-specified-path%e2%80%9d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

