<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2.2" -->
<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/"
	>

<channel>
	<title>dusty_machines</title>
	<link>http://christofr.com/blog</link>
	<description>christofr.com</description>
	<pubDate>Thu, 14 Feb 2008 22:18:04 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.2</generator>
	<language>en</language>
			<item>
		<title>DOS Batch Script to Delete Files in a Directory older than x Days</title>
		<link>http://christofr.com/blog/2008/02/14/dos-batch-script-to-delete-files-in-a-directory-older-than-x-days/</link>
		<comments>http://christofr.com/blog/2008/02/14/dos-batch-script-to-delete-files-in-a-directory-older-than-x-days/#comments</comments>
		<pubDate>Thu, 14 Feb 2008 22:18:04 +0000</pubDate>
		<dc:creator>pop</dc:creator>
		
		<category><![CDATA[.net]]></category>

		<guid isPermaLink="false">http://christofr.com/blog/2008/02/14/dos-batch-script-to-delete-files-in-a-directory-older-than-x-days/</guid>
		<description><![CDATA[Here&#8217;s a clever little batch script I found at work, by setting a few parameters near the top of the file, you can run this batch file whenever, to clean up a directory.
Typical usage would be to delete all .dmp files in a given directory which are older than 30 days.
I&#8217;m not sure who originally [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a clever little batch script I found at work, by setting a few parameters near the top of the file, you can run this batch file whenever, to clean up a directory.</p>
<p>Typical usage would be to delete all .dmp files in a given directory which are older than 30 days.</p>
<p>I&#8217;m not sure who originally wrote this, but its cool!</p>
<p><a href="http://christofr.com/blog/wp-content/uploads/2008/02/delold.txt" title="DOS Batch Script to Delete all Files older than a given date">DelOld.txt</a></p>
]]></content:encoded>
			<wfw:commentRss>http://christofr.com/blog/2008/02/14/dos-batch-script-to-delete-files-in-a-directory-older-than-x-days/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Error 14426: A log shipping monitor is already defined - How To Fix!</title>
		<link>http://christofr.com/blog/2007/10/16/error-14426-a-log-shipping-monitor-is-already-defined-how-to-fix/</link>
		<comments>http://christofr.com/blog/2007/10/16/error-14426-a-log-shipping-monitor-is-already-defined-how-to-fix/#comments</comments>
		<pubDate>Tue, 16 Oct 2007 06:21:56 +0000</pubDate>
		<dc:creator>pop</dc:creator>
		
		<category><![CDATA[.net]]></category>

		<guid isPermaLink="false">http://christofr.com/blog/2007/10/16/error-14426-a-log-shipping-monitor-is-already-defined-how-to-fix/</guid>
		<description><![CDATA[I&#8217;ve been trying to set up log shipping between two boxes running Sql Server 2000 - but everytime I got to the last step, I&#8217;d get the above error.
This is actually really simple to fix! On a previous attempt, running the Log Shipping wizard, the wizard had finished uncleanly, not rolled back entirely, and had [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been trying to set up log shipping between two boxes running Sql Server 2000 - but everytime I got to the last step, I&#8217;d get the above error.</p>
<p>This is actually really simple to fix! On a previous attempt, running the Log Shipping wizard, the wizard had finished uncleanly, not rolled back entirely, and had left a row in the  <strong>log_shipping_monitor</strong> table of <strong>msdb</strong>, a system database which comes with Sql Server 2000.</p>
<p>Check that table now! Is there a row there? Delete it and re-run the wizard, you should have gotten rid of the above error.</p>
]]></content:encoded>
			<wfw:commentRss>http://christofr.com/blog/2007/10/16/error-14426-a-log-shipping-monitor-is-already-defined-how-to-fix/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Lightning Quick .NET Profiling</title>
		<link>http://christofr.com/blog/2007/09/12/lightning-quick-net-profiling/</link>
		<comments>http://christofr.com/blog/2007/09/12/lightning-quick-net-profiling/#comments</comments>
		<pubDate>Wed, 12 Sep 2007 13:12:49 +0000</pubDate>
		<dc:creator>pop</dc:creator>
		
		<category><![CDATA[.net]]></category>

		<category><![CDATA[asp.net]]></category>

		<guid isPermaLink="false">http://christofr.com/blog/2007/09/12/lightning-quick-net-profiling/</guid>
		<description><![CDATA[Here&#8217;s a super-quick tip for evaluating the time-hit of a section of .NET code.
You&#8217;ll obviously want to use profiling tools once your application has taken shape, but I&#8217;ve been in the situation many times where you want to quickly evaluate several code options.
Simply use the System.Diagnostics.Stopwatch class to record the time taken for a piece [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a super-quick tip for evaluating the time-hit of a section of .NET code.</p>
<p>You&#8217;ll obviously want to use profiling tools once your application has taken shape, but I&#8217;ve been in the situation many times where you want to quickly evaluate several code options.</p>
<p>Simply use the System.Diagnostics.Stopwatch class to record the time taken for a piece of code to execute:</p>

<div class="wp_syntax"><div class="code"><pre class="csharp">&nbsp;
        <span style="color: #000000;">System</span>.<span style="color: #0000FF;">Diagnostics</span>.<span style="color: #0000FF;">Stopwatch</span> theWatch = <span style="color: #008000;">new</span> <span style="color: #000000;">System</span>.<span style="color: #0000FF;">Diagnostics</span>.<span style="color: #0000FF;">Stopwatch</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
&nbsp;
        theWatch.<span style="color: #0000FF;">Start</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
        <span style="color: #008080; font-style: italic;">// Execute a block of code..</span>
        theWatch.<span style="color: #0000FF;">Stop</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
&nbsp;
        Response.<span style="color: #0000FF;">Write</span><span style="color: #000000;">&#40;</span>theWatch.<span style="color: #0000FF;">ElapsedMilliseconds</span>.<span style="color: #0000FF;">ToString</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>;</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://christofr.com/blog/2007/09/12/lightning-quick-net-profiling/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ASP.NET &#038; C# - Merge DataTables based on Common Value</title>
		<link>http://christofr.com/blog/2007/08/30/aspnet-c-merge-datatables-based-on-common-value/</link>
		<comments>http://christofr.com/blog/2007/08/30/aspnet-c-merge-datatables-based-on-common-value/#comments</comments>
		<pubDate>Thu, 30 Aug 2007 06:01:15 +0000</pubDate>
		<dc:creator>pop</dc:creator>
		
		<category><![CDATA[.net]]></category>

		<category><![CDATA[c#]]></category>

		<category><![CDATA[asp.net]]></category>

		<guid isPermaLink="false">http://christofr.com/blog/?p=8</guid>
		<description><![CDATA[
Want to do the equivalent of an sql inner-join, on two .NET DataTables?

I wrote the code below some time ago, you can use it to effectively merge two datatables.
Use the static method, Merge, like so..
DataTable ANewMergedTable =  DataTableMerger.Merge(DataTable1, DataTable2);
This method will
(a) see if any columns in the first datatable also appear in the second [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li>Want to do the equivalent of an sql inner-join, on two .NET DataTables?</li>
</ul>
<p>I wrote the code below some time ago, you can use it to effectively merge two datatables.</p>
<p>Use the static method, Merge, like so..</p>
<p><strong>DataTable ANewMergedTable =  DataTableMerger.Merge(DataTable1, DataTable2);</strong></p>
<p>This method will</p>
<p>(a) see if any columns in the first datatable also appear in the second table</p>
<p>(b) if any do, join the two tables, using the shared column.</p>
<p><strong>Enjoy!</strong></p>
<hr />

<div class="wp_syntax"><div class="code"><pre class="csharp">&nbsp;</pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="csharp"><span style="color: #0600FF;">using</span> <span style="color: #000000;">System</span>;
&nbsp;
<span style="color: #0600FF;">using</span> <span style="color: #000000;">System</span>.<span style="color: #0000FF;">Data</span>;
&nbsp;
<span style="color: #0600FF;">using</span> <span style="color: #000000;">System</span>.<span style="color: #0000FF;">Collections</span>.<span style="color: #0000FF;">Generic</span>;
&nbsp;
<span style="color: #0600FF;">public</span> <span style="color: #0600FF;">static</span> <span style="color: #FF0000;">class</span> DataTableMerger
&nbsp;
<span style="color: #000000;">&#123;</span>
&nbsp;
    <span style="color: #0600FF;">public</span> <span style="color: #0600FF;">static</span> DataTable Merge<span style="color: #000000;">&#40;</span>DataTable dt1, DataTable dt2<span style="color: #000000;">&#41;</span>
&nbsp;
    <span style="color: #000000;">&#123;</span>
&nbsp;
        <span style="color: #008080; font-style: italic;">//Make sure we have some valid data to work with</span>
&nbsp;
        <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>dt1 == <span style="color: #0600FF;">null</span> || dt2 == <span style="color: #0600FF;">null</span> || dt1.<span style="color: #0000FF;">Columns</span>.<span style="color: #0000FF;">Count</span> &lt; <span style="color: #FF0000;">1</span> || dt1.<span style="color: #0000FF;">Columns</span>.<span style="color: #0000FF;">Count</span> &lt; <span style="color: #FF0000;">1</span><span style="color: #000000;">&#41;</span>
&nbsp;
        <span style="color: #000000;">&#123;</span>
&nbsp;
            <span style="color: #0600FF;">return</span> <span style="color: #0600FF;">null</span>;
&nbsp;
        <span style="color: #000000;">&#125;</span>
&nbsp;
	<span style="color: #008080; font-style: italic;">//Find the common fields.</span>
&nbsp;
        List&lt;string&gt; dt1ColumnsUsed = <span style="color: #008000;">new</span> List&lt;string&gt;<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
&nbsp;
        List&lt;string&gt; dt2ColumnsUsed = <span style="color: #008000;">new</span> List&lt;string&gt;<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
&nbsp;
        List&lt;string&gt; CommonColumns = <span style="color: #008000;">new</span> List&lt;string&gt;<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
&nbsp;
        <span style="color: #0600FF;">foreach</span> <span style="color: #000000;">&#40;</span>DataColumn dc <span style="color: #0600FF;">in</span> dt1.<span style="color: #0000FF;">Columns</span><span style="color: #000000;">&#41;</span>
&nbsp;
        <span style="color: #000000;">&#123;</span>
&nbsp;
            <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>dt2.<span style="color: #0000FF;">Columns</span>.<span style="color: #0000FF;">Contains</span><span style="color: #000000;">&#40;</span>dc.<span style="color: #0000FF;">ColumnName</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>
&nbsp;
            <span style="color: #000000;">&#123;</span>
&nbsp;
                CommonColumns.<span style="color: #0000FF;">Add</span><span style="color: #000000;">&#40;</span>dc.<span style="color: #0000FF;">ColumnName</span><span style="color: #000000;">&#41;</span>;
&nbsp;
            <span style="color: #000000;">&#125;</span>
&nbsp;
        <span style="color: #000000;">&#125;</span>
	<span style="color: #008080; font-style: italic;">//Did we find a match?</span>
&nbsp;
        <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>CommonColumns.<span style="color: #0000FF;">Count</span> &lt; <span style="color: #FF0000;">1</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span> <span style="color: #0600FF;">return</span> <span style="color: #0600FF;">null</span>; <span style="color: #000000;">&#125;</span> <span style="color: #008080; font-style: italic;">//no</span>
&nbsp;
        <span style="color: #008080; font-style: italic;">//Else Yes.</span>
&nbsp;
	<span style="color: #008080; font-style: italic;">//Create a new DataTable</span>
&nbsp;
        DataTable newdt = <span style="color: #008000;">new</span> DataTable<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
&nbsp;
	<span style="color: #008080; font-style: italic;">//Copy columns from Table 1</span>
&nbsp;
        <span style="color: #0600FF;">foreach</span> <span style="color: #000000;">&#40;</span>DataColumn dc <span style="color: #0600FF;">in</span> dt1.<span style="color: #0000FF;">Columns</span><span style="color: #000000;">&#41;</span>
&nbsp;
        <span style="color: #000000;">&#123;</span>
&nbsp;
            DataColumn newdc = <span style="color: #008000;">new</span> DataColumn<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
&nbsp;
            newdc.<span style="color: #0000FF;">ColumnName</span> = dc.<span style="color: #0000FF;">ColumnName</span>;
&nbsp;
            newdt.<span style="color: #0000FF;">Columns</span>.<span style="color: #0000FF;">Add</span><span style="color: #000000;">&#40;</span>newdc<span style="color: #000000;">&#41;</span>;
&nbsp;
            dt1ColumnsUsed.<span style="color: #0000FF;">Add</span><span style="color: #000000;">&#40;</span>dc.<span style="color: #0000FF;">ColumnName</span><span style="color: #000000;">&#41;</span>;
&nbsp;
        <span style="color: #000000;">&#125;</span>
&nbsp;
	<span style="color: #008080; font-style: italic;">//Copy columns from Table 2</span>
&nbsp;
        <span style="color: #0600FF;">foreach</span> <span style="color: #000000;">&#40;</span>DataColumn dc <span style="color: #0600FF;">in</span> dt2.<span style="color: #0000FF;">Columns</span><span style="color: #000000;">&#41;</span>
&nbsp;
        <span style="color: #000000;">&#123;</span>
&nbsp;
            <span style="color: #0600FF;">if</span><span style="color: #000000;">&#40;</span>!newdt.<span style="color: #0000FF;">Columns</span>.<span style="color: #0000FF;">Contains</span><span style="color: #000000;">&#40;</span>dc.<span style="color: #0000FF;">ColumnName</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>
&nbsp;
            <span style="color: #000000;">&#123;</span>
&nbsp;
                DataColumn newdc = <span style="color: #008000;">new</span> DataColumn<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
&nbsp;
                newdc.<span style="color: #0000FF;">ColumnName</span> = dc.<span style="color: #0000FF;">ColumnName</span>;
&nbsp;
                newdt.<span style="color: #0000FF;">Columns</span>.<span style="color: #0000FF;">Add</span><span style="color: #000000;">&#40;</span>newdc<span style="color: #000000;">&#41;</span>;
&nbsp;
                dt2ColumnsUsed.<span style="color: #0000FF;">Add</span><span style="color: #000000;">&#40;</span>dc.<span style="color: #0000FF;">ColumnName</span><span style="color: #000000;">&#41;</span>;
&nbsp;
            <span style="color: #000000;">&#125;</span>
&nbsp;
        <span style="color: #000000;">&#125;</span>
&nbsp;
	<span style="color: #008080; font-style: italic;">//Get data from both tables</span>
&nbsp;
        <span style="color: #0600FF;">foreach</span> <span style="color: #000000;">&#40;</span>DataRow dr <span style="color: #0600FF;">in</span> dt1.<span style="color: #0000FF;">Rows</span><span style="color: #000000;">&#41;</span>
&nbsp;
        <span style="color: #000000;">&#123;</span>
&nbsp;
                <span style="color: #0600FF;">for</span><span style="color: #000000;">&#40;</span><span style="color: #FF0000;">int</span> i = <span style="color: #FF0000;">0</span>; i &lt; dt2.<span style="color: #0000FF;">Rows</span>.<span style="color: #0000FF;">Count</span>; i++<span style="color: #000000;">&#41;</span>
&nbsp;
                <span style="color: #000000;">&#123;</span>
&nbsp;
                    DataRow dr2 = dt2.<span style="color: #0000FF;">Rows</span><span style="color: #000000;">&#91;</span>i<span style="color: #000000;">&#93;</span>;
&nbsp;
	            <span style="color: #008080; font-style: italic;">//if we have more than one.. check here now.</span>
&nbsp;
                    <span style="color: #FF0000;">bool</span> match = <span style="color: #0600FF;">true</span>;
&nbsp;
                    <span style="color: #0600FF;">foreach</span> <span style="color: #000000;">&#40;</span><span style="color: #FF0000;">string</span> shared <span style="color: #0600FF;">in</span> CommonColumns<span style="color: #000000;">&#41;</span>
&nbsp;
                    <span style="color: #000000;">&#123;</span>
&nbsp;
                        <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>dr<span style="color: #000000;">&#91;</span>shared<span style="color: #000000;">&#93;</span>.<span style="color: #0000FF;">ToString</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> != dr2<span style="color: #000000;">&#91;</span>shared<span style="color: #000000;">&#93;</span>.<span style="color: #0000FF;">ToString</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>
&nbsp;
                        <span style="color: #000000;">&#123;</span>
&nbsp;
                            match = <span style="color: #0600FF;">false</span>;
&nbsp;
                        <span style="color: #000000;">&#125;</span>
&nbsp;
                    <span style="color: #000000;">&#125;</span>
&nbsp;
		<span style="color: #0600FF;">if</span><span style="color: #000000;">&#40;</span>match<span style="color: #000000;">&#41;</span>
&nbsp;
                    <span style="color: #000000;">&#123;</span>
&nbsp;
                        <span style="color: #008080; font-style: italic;">//We have a match..</span>
&nbsp;
                        DataRow newdr = newdt.<span style="color: #0000FF;">NewRow</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
&nbsp;
			<span style="color: #008080; font-style: italic;">//Load in data from dt1</span>
&nbsp;
                        <span style="color: #0600FF;">foreach</span> <span style="color: #000000;">&#40;</span><span style="color: #FF0000;">string</span> dt1col <span style="color: #0600FF;">in</span> dt1ColumnsUsed<span style="color: #000000;">&#41;</span>
&nbsp;
                        <span style="color: #000000;">&#123;</span>
&nbsp;
                            newdr<span style="color: #000000;">&#91;</span>dt1col<span style="color: #000000;">&#93;</span> = dr<span style="color: #000000;">&#91;</span>dt1col<span style="color: #000000;">&#93;</span>.<span style="color: #0000FF;">ToString</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
&nbsp;
                        <span style="color: #000000;">&#125;</span>
&nbsp;
			<span style="color: #008080; font-style: italic;">//Load in data from dt2</span>
&nbsp;
                        <span style="color: #0600FF;">foreach</span> <span style="color: #000000;">&#40;</span><span style="color: #FF0000;">string</span> dt2col <span style="color: #0600FF;">in</span> dt2ColumnsUsed<span style="color: #000000;">&#41;</span>
&nbsp;
                        <span style="color: #000000;">&#123;</span>
&nbsp;
                            newdr<span style="color: #000000;">&#91;</span>dt2col<span style="color: #000000;">&#93;</span> = dr2<span style="color: #000000;">&#91;</span>dt2col<span style="color: #000000;">&#93;</span>.<span style="color: #0000FF;">ToString</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
&nbsp;
                        <span style="color: #000000;">&#125;</span>
&nbsp;
			<span style="color: #008080; font-style: italic;">//add the new row to the table</span>
&nbsp;
                        newdt.<span style="color: #0000FF;">Rows</span>.<span style="color: #0000FF;">Add</span><span style="color: #000000;">&#40;</span>newdr<span style="color: #000000;">&#41;</span>;
&nbsp;
                    <span style="color: #000000;">&#125;</span>
&nbsp;
            <span style="color: #000000;">&#125;</span>
&nbsp;
        <span style="color: #000000;">&#125;</span>
&nbsp;
	<span style="color: #008080; font-style: italic;">//return the table</span>
&nbsp;
        <span style="color: #0600FF;">return</span> newdt;
&nbsp;
    <span style="color: #000000;">&#125;</span>
&nbsp;
<span style="color: #000000;">&#125;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://christofr.com/blog/2007/08/30/aspnet-c-merge-datatables-based-on-common-value/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How To Fix: Provider: Named Pipes Provider, error: 5 - Invalid parameter(s) found</title>
		<link>http://christofr.com/blog/2007/08/24/how-to-fix-provider-named-pipes-provider-error-5-invalid-parameters-found/</link>
		<comments>http://christofr.com/blog/2007/08/24/how-to-fix-provider-named-pipes-provider-error-5-invalid-parameters-found/#comments</comments>
		<pubDate>Fri, 24 Aug 2007 00:54:23 +0000</pubDate>
		<dc:creator>pop</dc:creator>
		
		<category><![CDATA[sql server 2005]]></category>

		<category><![CDATA[sql server 2000]]></category>

		<category><![CDATA[.net]]></category>

		<category><![CDATA[c#]]></category>

		<category><![CDATA[asp.net]]></category>

		<guid isPermaLink="false">http://christofr.com/blog/?p=5</guid>
		<description><![CDATA[Are you coming up against this error, when connecting to SQL Server?





 An error has occurred while establishing a connection to the  server. When connecting to SQL Server 2005, this failure may be caused by the  fact that under the default settings SQL Server does not allow remote  connections. (provider: Named Pipes [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Are you coming up against this error, when connecting to SQL Server?</strong></p>
<blockquote>
<blockquote>
<blockquote></blockquote>
</blockquote>
</blockquote>
<blockquote><p> <span class="tx">An error has occurred while establishing a connection to the  server. When connecting to SQL Server 2005, this failure may be caused by the  fact that under the default settings SQL Server does not allow remote  connections. (provider: Named Pipes Provider, error: 5 - Invalid parameter(s)  found</span></p></blockquote>
<blockquote>
<blockquote>
<blockquote></blockquote>
</blockquote>
</blockquote>
<ul>
<li>  <strong>Here are the two biggest causes:</strong></li>
</ul>
<ol>
<li> You dont have TCP/IP enabled for this instance of SQL Server. In the SQL Server Configuration Manager (under Configuration Tools in the Microsoft SQL Server folder), you can change these settings.</li>
<li>Your connection string is in the following format:</li>
</ol>
<blockquote></blockquote>
<blockquote><p>Server=\\MYSERVER\SQL2000;Initial Catalog=my_database;uid=sa;pwd=sa</p></blockquote>
<blockquote></blockquote>
<p>The solution here is to drop the leading backslashes, ie. make this connection string:</p>
<blockquote><p>Server=MYSERVER\SQL2000;Initial Catalog=my_database;uid=sa;pwd=sa</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://christofr.com/blog/2007/08/24/how-to-fix-provider-named-pipes-provider-error-5-invalid-parameters-found/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
