<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>SQL Server</title><link>http://mail.localplanet.co.uk/Blogs/stuart/category/19.aspx</link><description>SQL Server</description><managingEditor>Stuart Radcliffe</managingEditor><dc:language>en-GB</dc:language><generator>.Text Version 0.95.2004.102</generator><item><dc:creator>Stuart Radcliffe</dc:creator><title>Moving ASP.NET Web Application from Windows 2000 to Windows 2003</title><link>http://mail.localplanet.co.uk/Blogs/stuart/archive/2006/10/23/ASPNETSecurity.aspx</link><pubDate>Mon, 23 Oct 2006 11:35:00 GMT</pubDate><guid>http://mail.localplanet.co.uk/Blogs/stuart/archive/2006/10/23/ASPNETSecurity.aspx</guid><description>&lt;P&gt;One thing I have to remember.&lt;/P&gt;
&lt;P&gt;The ASPNET user no longer exists and will not be used by the web application when accessing SQL Server.&amp;nbsp; You will get an error - Login failed for user 'NT AUTHORITY\NETWORK SERVICE'.&amp;nbsp; This user does not seem to exist, though.&amp;nbsp; It appears to be hidden but does exist inside the IIS_WPG group.&amp;nbsp; If you add this group as your SQL Server Login and give it the access permissions previously enjoyed by ASPNET then it should work.&lt;/P&gt;&lt;img src ="http://mail.localplanet.co.uk/Blogs/stuart/aggbug/34448.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Stuart Radcliffe</dc:creator><title>Changing the name of a SQL Server machine </title><link>http://mail.localplanet.co.uk/Blogs/stuart/archive/2006/10/20/Changing_sql_name.aspx</link><pubDate>Fri, 20 Oct 2006 10:16:00 GMT</pubDate><guid>http://mail.localplanet.co.uk/Blogs/stuart/archive/2006/10/20/Changing_sql_name.aspx</guid><description>If you change the machine name of a machine with SQL Server installed, you need to do a few things in SQL Server after the machine name change. This article outlines those steps. The article applies to SQL Server 7.0, 2000 and 2005. &lt;BR&gt;&lt;BR&gt;&lt;A href="http://www.karaszi.com/SQLServer/info_change_server_name.asp"&gt;Changing the name of a SQL Server machine&lt;/A&gt; &lt;img src ="http://mail.localplanet.co.uk/Blogs/stuart/aggbug/33470.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Stuart Radcliffe</dc:creator><title>Clear All Connections to a SQL Server Database</title><link>http://mail.localplanet.co.uk/Blogs/stuart/archive/2006/03/22/clear_sql_connections.aspx</link><pubDate>Wed, 22 Mar 2006 09:54:00 GMT</pubDate><guid>http://mail.localplanet.co.uk/Blogs/stuart/archive/2006/03/22/clear_sql_connections.aspx</guid><description>We have a requirement to restore a database every night to a back up copy.  This back-up copy will have people using it at times so there may be active connections that will stop the restore job from taking place.  To get around this problem, we add some Transact-SQL to the restore job to clear all connections to the database. This Transact-SQL code looks like this:

&lt;style type="text/css"&gt;
.cf { font-family: Courier New; font-size: 10pt; color: black; background: white; border-top: windowtext 1pt solid; padding-top: 0pt; border-left: windowtext 1pt solid; padding-left: 0pt; border-right: windowtext 1pt solid; padding-right: 0pt; border-bottom: windowtext 1pt solid; padding-bottom: 0pt; }
.cl { margin: 0px; }
.cb1 { color: blue; }
&lt;/style&gt;
&lt;div class="cf"&gt;
&lt;p class="cl"&gt;&lt;span class="cb1"&gt;use &lt;/span&gt;master&lt;/p&gt;
&lt;p class="cl"&gt; &lt;/p&gt;
&lt;p class="cl"&gt;&lt;span class="cb1"&gt;declare &lt;/span&gt;@vcdbname &lt;span class="cb1"&gt;varchar&lt;/span&gt;(50)&lt;/p&gt;
&lt;p class="cl"&gt;&lt;span class="cb1"&gt;Set &lt;/span&gt;@vcdbname = 'DatabaseName'&lt;/p&gt;
&lt;p class="cl"&gt; &lt;/p&gt;
&lt;p class="cl"&gt;&lt;span class="cb1"&gt;set nocount on&lt;/span&gt;&lt;/p&gt;
&lt;p class="cl"&gt;&lt;span class="cb1"&gt;declare &lt;/span&gt;Users &lt;span class="cb1"&gt;cursor for&lt;/span&gt;&lt;/p&gt;
&lt;p class="cl"&gt; &lt;span class="cb1"&gt;select &lt;/span&gt;spid&lt;/p&gt;
&lt;p class="cl"&gt; &lt;span class="cb1"&gt;from &lt;/span&gt;master..sysprocesses&lt;/p&gt;
&lt;p class="cl"&gt; &lt;span class="cb1"&gt;where db_name&lt;/span&gt;(dbid) = @vcdbname&lt;/p&gt;
&lt;p class="cl"&gt; &lt;/p&gt;
&lt;p class="cl"&gt;&lt;span class="cb1"&gt;declare &lt;/span&gt;@spid &lt;span class="cb1"&gt;int&lt;/span&gt;, @str &lt;span class="cb1"&gt;varchar&lt;/span&gt;(255)&lt;/p&gt;
&lt;p class="cl"&gt; &lt;/p&gt;
&lt;p class="cl"&gt;&lt;span class="cb1"&gt;open &lt;/span&gt;users&lt;/p&gt;
&lt;p class="cl"&gt; &lt;/p&gt;
&lt;p class="cl"&gt;&lt;span class="cb1"&gt;fetch next from &lt;/span&gt;users &lt;span class="cb1"&gt;into &lt;/span&gt;@spid&lt;/p&gt;
&lt;p class="cl"&gt; &lt;/p&gt;
&lt;p class="cl"&gt;&lt;span class="cb1"&gt;while &lt;/span&gt;@@fetch_status &lt;&gt; -1&lt;/p&gt;
&lt;p class="cl"&gt;&lt;span class="cb1"&gt;begin&lt;/span&gt;&lt;/p&gt;
&lt;p class="cl"&gt;   &lt;span class="cb1"&gt;if &lt;/span&gt;@@fetch_status = 0&lt;/p&gt;
&lt;p class="cl"&gt;   &lt;span class="cb1"&gt;begin&lt;/span&gt;&lt;/p&gt;
&lt;p class="cl"&gt;      &lt;span class="cb1"&gt;set &lt;/span&gt;@str = 'kill ' + &lt;span class="cb1"&gt;convert&lt;/span&gt;(&lt;span class="cb1"&gt;varchar&lt;/span&gt;, @spid)&lt;/p&gt;
&lt;p class="cl"&gt;      &lt;span class="cb1"&gt;exec &lt;/span&gt;(@str)&lt;/p&gt;
&lt;p class="cl"&gt;   &lt;span class="cb1"&gt;end&lt;/span&gt;&lt;/p&gt;
&lt;p class="cl"&gt;   &lt;span class="cb1"&gt;fetch next from &lt;/span&gt;users &lt;span class="cb1"&gt;into &lt;/span&gt;@spid&lt;/p&gt;
&lt;p class="cl"&gt;&lt;span class="cb1"&gt;end&lt;/span&gt;&lt;/p&gt;
&lt;p class="cl"&gt; &lt;/p&gt;
&lt;p class="cl"&gt;&lt;span class="cb1"&gt;deallocate &lt;/span&gt;users &lt;/p&gt;
&lt;/div&gt;&lt;img src ="http://mail.localplanet.co.uk/Blogs/stuart/aggbug/10706.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Stuart Radcliffe</dc:creator><title>MSDE Manager</title><link>http://mail.localplanet.co.uk/Blogs/stuart/archive/2006/02/24/msde_manager.aspx</link><pubDate>Fri, 24 Feb 2006 08:47:00 GMT</pubDate><guid>http://mail.localplanet.co.uk/Blogs/stuart/archive/2006/02/24/msde_manager.aspx</guid><description>&lt;a href="http://www.whitebearconsulting.com/MSDEMgr.zip"&gt;MSDE Manager&lt;/a&gt;
&lt;br&gt;Free for personal use program that allows you to run scripts and do some simple managemnt on MSDE databases.

&lt;br&gt;&lt;br&gt;&lt;img src ="http://mail.localplanet.co.uk/Blogs/stuart/aggbug/7508.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Stuart Radcliffe</dc:creator><title>Recent Links</title><link>http://mail.localplanet.co.uk/Blogs/stuart/archive/2006/01/06/Recent_Links_20060506.aspx</link><pubDate>Fri, 06 Jan 2006 11:05:00 GMT</pubDate><guid>http://mail.localplanet.co.uk/Blogs/stuart/archive/2006/01/06/Recent_Links_20060506.aspx</guid><description>&lt;a href="http://msdn.microsoft.com/office/default.aspx?pull=/library/en-us/odc_vsto2005_ta/html/OfficeVSTOWindowsInstallerWalkthrough.asp"&gt;Office Developer Center: Deploying Visual Studio 2005 Tools for Office Solutions Using Windows Installer: Walkthroughs (Part 2 of 2)&lt;/a&gt;
&lt;br&gt;This article, the second of two, provides two walkthroughs about deploying a Microsoft Visual Studio 2005 Tools for the Microsoft Office System solution using a Visual Studio Setup project to create a Windows Installer package.

&lt;br&gt;&lt;br&gt;&lt;a href="http://msdn.microsoft.com/office/default.aspx?pull=/library/en-us/odc_vsto2005_ta/html/OfficeVSTOWindowsInstallerOverview.asp"&gt;Office Developer Center: Deploying Visual Studio 2005 Tools for Office Solutions Using Windows Installer (Part 1 of 2)&lt;/a&gt;
&lt;br&gt;This article targets developers who want to deploy a Microsoft Visual Studio 2005 Tools for the Microsoft Office System solution using a Microsoft Visual Studio 2005 Setup project to create a Windows Installer package.

&lt;br&gt;&lt;br&gt;&lt;a href="http://www.hanselman.com/blog/VirtualMachinesAndExternalHardDriveThroughput.aspx"&gt;ComputerZen.com - Scott Hanselman - Virtual Machines and External Hard Drive throughput&lt;/a&gt;
&lt;br&gt;The conclusion is that either USB 2.0 or Firewire are both very reasonable solution for the power user's external HD needs when running Virtual Machines.

&lt;br&gt;&lt;br&gt;&lt;a href="http://news.bbc.co.uk/1/hi/technology/4578114.stm"&gt;City-wide wi-fi rolls out in UK&lt;/a&gt;
&lt;br&gt;The Cloud will bring wireless broadband to nine cities including London, Manchester and Birmingham.

&lt;br&gt;&lt;br&gt;&lt;a href="http://weblogs.asp.net/mnissen/archive/2005/07/01/417148.aspx"&gt;Make VSTO for Outlook solutions run right off the MSI&lt;/a&gt;
&lt;br&gt;There are a couple of things you've got to do manually to make a Visual Studio Tools for Office 2005 application run straight off the MSI.

&lt;br&gt;&lt;br&gt;&lt;a href="http://www.pcquest.com/content/search/showarticle1.asp?arid=75833&amp;mode=disp"&gt;PCQuest : Developer : Introducing Windows Mobile 5.0&lt;/a&gt;
&lt;br&gt;The latest release of this development platform for mobiles and hand-helds adds new capabilities like Pocket Outlook Object Model and System Event Notification.

&lt;br&gt;&lt;br&gt;&lt;a href="http://www.inthehand.com/library/InTheHand.WindowsMobile.PocketOutlook.html"&gt;InTheHand.WindowsMobile.PocketOutlook&lt;/a&gt;
&lt;br&gt;Pocket Outlook In The Hand is a wrapper library around the Pocket Outlook Object Model (POOM). This namespace is equivalent to Microsoft.WindowsMobile.PocketOutlook namespace in Windows Mobile 5.0.

&lt;br&gt;&lt;br&gt;&lt;a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/mobilesdk5/html/N_Microsoft_WindowsMobile_PocketOutlook.asp"&gt;Microsoft.WindowsMobile.PocketOutlook&lt;/a&gt;
&lt;br&gt;The Microsoft.WindowsMobile.PocketOutlook namespace provides classes that allow you to create and access PIM data items (Appointments, Tasks, and Contacts), and MAPI messaging items (e-mail and SMS messages), on Pocket PCs and Smartphones.

&lt;br&gt;&lt;br&gt;&lt;a href="http://www.systemnetmail.com/"&gt;System.Net.Mail, OH MY!&lt;/a&gt;
&lt;br&gt;FAQ for System.NET.Mail namespace.

&lt;br&gt;&lt;br&gt;&lt;a href="http://weblogs.asp.net/scottgu/archive/2006/01/02/434362.aspx"&gt;GridView: Adding Confirmation before Deleting Items (using the OnClientClick property)&lt;/a&gt;
&lt;br&gt;A pretty easy way to add confirmation pop-ups for delete command (or update or edit or any other command) using a GridView control, or before any other post-back event in ASP.NET.

&lt;br&gt;&lt;br&gt;&lt;a href="http://weblogs.asp.net/scottgu/archive/2006/01/01/434314.aspx"&gt;Paging through lots of data efficiently (and in an Ajax way) with ASP.NET 2.0&lt;/a&gt;
&lt;br&gt;This sample is a self-contained ASP.NET application that demonstrates a few things:

&lt;br&gt;&lt;br&gt;&lt;a href="http://www.vb123.com/toolshed/05_docs/stopoutlookmessages.htm"&gt;Stop Those Annoying Outlook Warning Messages&lt;/a&gt;
&lt;br&gt;Turn on and off in code.

&lt;br&gt;&lt;br&gt;&lt;a href="http://www.outlookexchange.com/articles/home/brucewinters01.asp"&gt;Welcome to Outlook Exchange&lt;/a&gt;
&lt;br&gt;This code will load a ComboBox with sorted data from a Contacts folder.

&lt;br&gt;&lt;br&gt;&lt;a href="http://www.webreference.com/javascript/reference/core_ref/date.html#1193137"&gt;Core JavaScript Reference 1.5: - Dates&lt;/a&gt;
&lt;br&gt;Lots of information and examples about working with dates in Javascript

&lt;br&gt;&lt;br&gt;&lt;a href="http://webmonkey.wired.com/webmonkey/98/04/index1a_page14.html"&gt;Thau's JavaScript Tutorial - Functions with More Than 1 Parameter&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;&lt;br&gt;&lt;a href="http://webmonkey.wired.com/webmonkey/98/04/index3a_page4.html"&gt;Thau's JavaScript Tutorial - Text Fields&lt;/a&gt;
&lt;br&gt;Text fields understand onBlur, onFocus, and onChange.

&lt;br&gt;&lt;br&gt;&lt;a href="http://www.mredkj.com/tutorials/reference_js_intro.html"&gt;HTML / JavaScript Reference - mredkj.com&lt;/a&gt;
&lt;br&gt;Intro to JS - Basics, Variables, SCRIPT tag

&lt;br&gt;&lt;br&gt;&lt;a href="http://www.mredkj.com/tutorials/tutorial006.html"&gt;HTML/JavaScript - Select list - Add/Remove Options (Old School) - mredkj.com&lt;/a&gt;
&lt;br&gt;Functions to insert, append, and remove options from a multiple select list.

&lt;br&gt;&lt;br&gt;&lt;a href="http://msdn.microsoft.com/msdnmag/issues/06/01/AdvancedBasics/default.aspx"&gt;Advanced Basics: The Sound of Music -- MSDN Magazine, January 2006&lt;/a&gt;
&lt;br&gt;Prior to working with Visual Studio® 2005, adding even simple tunes and system sounds to your application could be a challenge. There are numerous new classes and namespaces that have been added to the Microsoft® .NET Framework 2.0 to help you do just t

&lt;br&gt;&lt;br&gt;&lt;a href="http://msdn.microsoft.com/asp.net/default.aspx?pull=/library/en-us/dnaspp/html/customcontrolfromusercontrol.asp"&gt;ASP.NET Development Center: Turning an .ascx User Control into a Redistributable Custom Control&lt;/a&gt;
&lt;br&gt;With previous versions of ASP.NET, developers had to decide whether to create custom controls or user controls. This article looks at a method for easily creating custom controls from existing user controls (ASCX files).

&lt;br&gt;&lt;br&gt;&lt;a href="http://msdn.microsoft.com/msdnmag/issues/06/01/UnitTesting/default.aspx"&gt;Unit Testing Tips: Write Maintainable Unit Tests That Will Save You Time And Tears -- MSDN Magazine, January 2006&lt;/a&gt;
&lt;br&gt;In this article, I'll try to bring you some of the most important practices I've learned over the years while developing and consulting, and while training developers. These tips should help you write effective, maintainable, and robust unit tests.

&lt;br&gt;&lt;br&gt;&lt;a href="http://weblogs.asp.net/rosherove/archive/2005/12/17/433412.aspx"&gt;NUnit 2.2.4: .NET 2.0 Support, Extensibility Support and new Asserts and Attributes&lt;/a&gt;
&lt;br&gt;New release of the top .NET Unit Test facility.

&lt;br&gt;&lt;br&gt;&lt;a href="http://weblogs.asp.net/scottgu/archive/2005/12/15/433284.aspx"&gt;Cool SQL Server and SQL Express Command-Line Utility&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;&lt;br&gt;&lt;img src ="http://mail.localplanet.co.uk/Blogs/stuart/aggbug/6656.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Stuart Radcliffe</dc:creator><title>Microsoft Webcasts</title><link>http://mail.localplanet.co.uk/Blogs/stuart/archive/2005/02/10/Webcasts.aspx</link><pubDate>Thu, 10 Feb 2005 17:51:00 GMT</pubDate><guid>http://mail.localplanet.co.uk/Blogs/stuart/archive/2005/02/10/Webcasts.aspx</guid><description>&lt;a href="http://www.microsoft.com/communities/webcasts/default.mspx"&gt;Overview page of all of Microsoft's Webcast offerings&lt;/a&gt;.&lt;img src ="http://mail.localplanet.co.uk/Blogs/stuart/aggbug/424.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Stuart Radcliffe</dc:creator><title>Another exam down</title><link>http://mail.localplanet.co.uk/Blogs/stuart/archive/2004/10/19/Passed70229.aspx</link><pubDate>Tue, 19 Oct 2004 18:19:00 GMT</pubDate><guid>http://mail.localplanet.co.uk/Blogs/stuart/archive/2004/10/19/Passed70229.aspx</guid><description>&lt;P&gt;Passed &lt;A href="http://www.microsoft.com/traincert/exams/70-229.asp"&gt;&lt;SPAN lang=EN-US&gt;Exam 70&amp;#8211;229&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN lang=EN-US&gt;: Designing and Implementing Databases with Microsoft SQL Server&amp;#8482; 2000 Enterprise Edition&lt;/SPAN&gt;.&lt;/P&gt;
&lt;P&gt;Now on to&amp;nbsp; &lt;A href="http://www.microsoft.com/traincert/exams/70-310.asp"&gt;&lt;SPAN lang=EN-US&gt;Exam 70&amp;#8211;310&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN lang=EN-US&gt;: Developing XML Web Services and Server Components with Microsoft Visual Basic .NET and the Microsoft .NET Framework.&lt;/SPAN&gt;&lt;/P&gt;&lt;img src ="http://mail.localplanet.co.uk/Blogs/stuart/aggbug/358.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Stuart Radcliffe</dc:creator><title>Problems after installing Windows XP SP2</title><link>http://mail.localplanet.co.uk/Blogs/stuart/archive/2004/08/17/ProblemsXPSP2.aspx</link><pubDate>Tue, 17 Aug 2004 08:45:00 GMT</pubDate><guid>http://mail.localplanet.co.uk/Blogs/stuart/archive/2004/08/17/ProblemsXPSP2.aspx</guid><description>&lt;P&gt;A couple of Microsoft KB articles on problems after installing Windows XP SP2.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.microsoft.com/default.aspx?kbid=842242"&gt;842242 - Some programs seem to stop working after you install Windows XP Service Pack 2&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A title=http://support.microsoft.com/default.aspx?scid=kb;en-us;883575 href="http://support.microsoft.com/default.aspx?scid=kb;en-us;883575"&gt;Description of the known issues with using Outlook Web Access on a Windows XP SP2-based computer&lt;/A&gt;&lt;/P&gt;&lt;img src ="http://mail.localplanet.co.uk/Blogs/stuart/aggbug/302.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Stuart Radcliffe</dc:creator><title>Microsoft Moving Away from ADPs in Access</title><link>http://mail.localplanet.co.uk/Blogs/stuart/archive/2004/08/06/AccessADP.aspx</link><pubDate>Fri, 06 Aug 2004 08:01:00 GMT</pubDate><guid>http://mail.localplanet.co.uk/Blogs/stuart/archive/2004/08/06/AccessADP.aspx</guid><description>&lt;P&gt;&lt;A href="http://sqljunkies.com/WebLog/ktegels"&gt;Kent Tegels&lt;/A&gt;&amp;nbsp;&lt;A href="http://sqljunkies.com/WebLog/ktegels/archive/2004/08/03/3735.aspx "&gt;quotes &lt;/A&gt;Mary Chipman (who wrote &lt;A href="http://www.amazon.com/exec/obidos/tg/detail/-/0672319446/qid=1091775101/sr=8-1/ref=sr_8_xs_ap_i1_xgl14/104-9274862-0445505?v=glance&amp;amp;s=books&amp;amp;n=507846"&gt;the book&lt;/A&gt;) in the SSXE newsgroup as saying that Microsoft are&amp;nbsp;now recommending moving away from ADP based solutions.&amp;nbsp; It looks like this may be an experiment that has not been completely successful which leaves those of us who have implemented these solutions with an interesting support problem going forward.&amp;nbsp; Here is the quote:&lt;/P&gt;
&lt;P class=quote&gt;However, for new application development, ADPs aren't looking so promising, especially if you are thinking in the Yukon timeframe. A couple of problematical issues are complex data types and CLR assemblies. Tackling these head-on in the ADP UI graphical tools in the next version of Access is a daunting challenge, to say the least.&lt;/P&gt;
&lt;P&gt;...and...&lt;/P&gt;
&lt;P class=quote&gt;FWIW, the Access team has moved away from recommending ADPs as a front-end to SQLS apps over the last year or so, based on several public talks given by team members at industry conferences. If you are contemplating new development with Access as a FE to a SQLS BE, you'll likely be ahead of the game with an efficiently-designed MDB/linked table solution rather than an ADP. &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src ="http://mail.localplanet.co.uk/Blogs/stuart/aggbug/291.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Stuart Radcliffe</dc:creator><title>Connection String Generator</title><link>http://mail.localplanet.co.uk/Blogs/stuart/archive/2004/07/22/ConnectionStringGenerator.aspx</link><pubDate>Thu, 22 Jul 2004 14:53:00 GMT</pubDate><guid>http://mail.localplanet.co.uk/Blogs/stuart/archive/2004/07/22/ConnectionStringGenerator.aspx</guid><description>&lt;P&gt;Useful when you can't quite remember that setting...&lt;/P&gt;
&lt;P&gt;&lt;A href="http://ambroise.neve.be/library/content/oledb.asp"&gt;http://ambroise.neve.be/library/content/oledb.asp&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;UPDATE:&lt;/P&gt;
&lt;P&gt;Lots more info &lt;A href="http://www.able-consulting.com/ADO_Conn.htm"&gt;here&lt;/A&gt;.&lt;/P&gt;&lt;img src ="http://mail.localplanet.co.uk/Blogs/stuart/aggbug/280.aspx" width = "1" height = "1" /&gt;</description></item></channel></rss>