<?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"
	>

<channel>
	<title>Internet solution team</title>
	<atom:link href="http://www.isolutionteam.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.isolutionteam.co.uk</link>
	<description>Write easy solutions, provide easy solutions</description>
	<pubDate>Thu, 23 Oct 2008 20:02:04 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>Using (nolock) with SQL Select Query in SQL Server 2005</title>
		<link>http://www.isolutionteam.co.uk/2008/10/15/using-nolock-with-sql-select-query-in-sql-server-2005/</link>
		<comments>http://www.isolutionteam.co.uk/2008/10/15/using-nolock-with-sql-select-query-in-sql-server-2005/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 12:00:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Database]]></category>

		<category><![CDATA[SQL (Structured Query Language)]]></category>

		<category><![CDATA[nolock]]></category>

		<category><![CDATA[remote server]]></category>

		<category><![CDATA[select + (nolock)]]></category>

		<category><![CDATA[Select data from two servers]]></category>

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

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

		<guid isPermaLink="false">http://www.isolutionteam.co.uk/?p=84</guid>
		<description><![CDATA[I was using following query
select top 10 * from [sqlserver02\sqlserver02].tes_community.dbo.aspnet_membership (nolock)
whereas &#8220;sqlserver02&#8243; was a remote serever  and I found following errro
Msg 4122, Level 16, State 1, Line 1
Remote table-valued function calls are not allowed.
Then I remove (nolock) from the query and it worked.
Does any one know why remote serever doesn&#8217;t allow (nolock)?
]]></description>
		<wfw:commentRss>http://www.isolutionteam.co.uk/2008/10/15/using-nolock-with-sql-select-query-in-sql-server-2005/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Accessing Different Database on Different SQL Servers</title>
		<link>http://www.isolutionteam.co.uk/2008/10/15/accessing-different-database-on-different-sql-servers/</link>
		<comments>http://www.isolutionteam.co.uk/2008/10/15/accessing-different-database-on-different-sql-servers/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 11:53:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Database]]></category>

		<category><![CDATA[SQL (Structured Query Language)]]></category>

		<category><![CDATA[Accessing Different Database on Different SQL Servers]]></category>

		<category><![CDATA[Select data from two servers]]></category>

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

		<category><![CDATA[sql sever 2005]]></category>

		<guid isPermaLink="false">http://www.isolutionteam.co.uk/?p=80</guid>
		<description><![CDATA[Accessing Different Database on Different SQL Servers
I was trying to Access two databases on two different servers. I was usring four part name to SQlServer
&#8220;[sqlserver02].MyDatabase.dbo.aspnet_membership&#8221; but it was not letting me do that and was showing following error message.
Msg 7202, Level 11, State 2, Line 1
Could not find server &#8217;sqlserver02&#8242; in sys.servers. Verify that the [...]]]></description>
		<wfw:commentRss>http://www.isolutionteam.co.uk/2008/10/15/accessing-different-database-on-different-sql-servers/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Remove extra spaces from string using regular expression, asp.net, c#</title>
		<link>http://www.isolutionteam.co.uk/2008/10/09/remove-extra-spaces-from-string-using-regular-expression-aspnet-c/</link>
		<comments>http://www.isolutionteam.co.uk/2008/10/09/remove-extra-spaces-from-string-using-regular-expression-aspnet-c/#comments</comments>
		<pubDate>Thu, 09 Oct 2008 12:18:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Asp.net]]></category>

		<category><![CDATA[Web development and design]]></category>

		<category><![CDATA[programming]]></category>

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

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

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

		<category><![CDATA[regular  epxression]]></category>

		<guid isPermaLink="false">http://www.isolutionteam.co.uk/?p=62</guid>
		<description><![CDATA[ Removes extra space from the string using Regular expression.
public string RemoveExtaSpaces(string text)
{
Regex regex = new Regex(@&#8221;\s{2,}&#8221;, Options);
text = regex.Replace(text.Trim(), &#8221; &#8220;); //This line removes extra spaces and make space exactly one.
//To remove the  space between the end of a word and a punctuation mark used in the text we will
//be using following line of code
regex=new [...]]]></description>
		<wfw:commentRss>http://www.isolutionteam.co.uk/2008/10/09/remove-extra-spaces-from-string-using-regular-expression-aspnet-c/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Disabling/Enabling asp.net checkboxlist items using javascritp</title>
		<link>http://www.isolutionteam.co.uk/2008/09/04/disablingenabling-aspnet-checkboxlist-items-using-javascritp/</link>
		<comments>http://www.isolutionteam.co.uk/2008/09/04/disablingenabling-aspnet-checkboxlist-items-using-javascritp/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 15:35:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Asp.net]]></category>

		<category><![CDATA[javascript]]></category>

		<category><![CDATA[programming]]></category>

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

		<category><![CDATA[checkbox]]></category>

		<category><![CDATA[disabling]]></category>

		<category><![CDATA[enabling]]></category>

		<category><![CDATA[enabling/disabling checkboxlist item]]></category>

		<guid isPermaLink="false">http://www.isolutionteam.co.uk/?p=73</guid>
		<description><![CDATA[We  are using  asp.net check box server side control in ajax update panel. These are bind to SQS server.  We were facing a big problem. There were some busineess rule which were implementing on Post back i.e. on selection of check box from list other check box were getting disabled. We wrote some server side script [...]]]></description>
		<wfw:commentRss>http://www.isolutionteam.co.uk/2008/09/04/disablingenabling-aspnet-checkboxlist-items-using-javascritp/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Modal Popup Extender, AJAX Tool Kit, Validation Controls ASP.NET</title>
		<link>http://www.isolutionteam.co.uk/2008/09/02/modal-popup-extender-ajax-tool-kit-validation-controls-aspnet/</link>
		<comments>http://www.isolutionteam.co.uk/2008/09/02/modal-popup-extender-ajax-tool-kit-validation-controls-aspnet/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 19:48:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Asp.net]]></category>

		<category><![CDATA[programming]]></category>

		<category><![CDATA[ajax]]></category>

		<category><![CDATA[Inpute validation with modal popup extender]]></category>

		<category><![CDATA[javascript]]></category>

		<category><![CDATA[modal popup]]></category>

		<category><![CDATA[modal popup extender]]></category>

		<category><![CDATA[validation]]></category>

		<guid isPermaLink="false">http://www.isolutionteam.co.uk/?p=42</guid>
		<description><![CDATA[I am using Modal popup Extender in my project which after click save button appears and takes Reason for doing that action as an input. I am using a text box labelling Reason for change; if that box is empty I am telling my transaction to roll back. So to make changes appear in database [...]]]></description>
		<wfw:commentRss>http://www.isolutionteam.co.uk/2008/09/02/modal-popup-extender-ajax-tool-kit-validation-controls-aspnet/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Power of CLR (Common Language Runtime) + SQL server 2005, Managed Assembly</title>
		<link>http://www.isolutionteam.co.uk/2008/08/01/power-of-clr-common-language-runtime-sql-server-2005-managed-assembly/</link>
		<comments>http://www.isolutionteam.co.uk/2008/08/01/power-of-clr-common-language-runtime-sql-server-2005-managed-assembly/#comments</comments>
		<pubDate>Fri, 01 Aug 2008 19:30:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Database]]></category>

		<category><![CDATA[SQL (Structured Query Language)]]></category>

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

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

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

		<category><![CDATA[clr]]></category>

		<category><![CDATA[common language runtime]]></category>

		<category><![CDATA[managed assembly]]></category>

		<category><![CDATA[RegEx]]></category>

		<category><![CDATA[regular expression]]></category>

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

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

		<guid isPermaLink="false">http://www.isolutionteam.co.uk/?p=38</guid>
		<description><![CDATA[Today I used Managed Assembly to use Regular Expression in SQL server 2005. I wanted to search for all records which contain special characters in my data and some foreign characters so I was using following SQL Query
Select OrganisationId,organisationname from organisation Where organisationname like &#8216;%-%&#8217; OR OrganisationName like &#8216;%&#38;%&#8217; OR OrganisationName like &#8216;%(%&#8217; OR  [...]]]></description>
		<wfw:commentRss>http://www.isolutionteam.co.uk/2008/08/01/power-of-clr-common-language-runtime-sql-server-2005-managed-assembly/feed/</wfw:commentRss>
		</item>
		<item>
		<title>JavaScript ShowModalDialog + Aspx page_load event not fires</title>
		<link>http://www.isolutionteam.co.uk/2008/07/16/javascript-showmodaldialog-aspx-page_load-event-not-fires/</link>
		<comments>http://www.isolutionteam.co.uk/2008/07/16/javascript-showmodaldialog-aspx-page_load-event-not-fires/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 12:07:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Asp.net]]></category>

		<category><![CDATA[Web development and design]]></category>

		<category><![CDATA[programming]]></category>

		<category><![CDATA[aspx page]]></category>

		<category><![CDATA[Event not fires]]></category>

		<category><![CDATA[java]]></category>

		<category><![CDATA[javascript]]></category>

		<category><![CDATA[page load]]></category>

		<category><![CDATA[script]]></category>

		<category><![CDATA[server script]]></category>

		<category><![CDATA[server side page]]></category>

		<category><![CDATA[ShowModalDialog]]></category>

		<guid isPermaLink="false">http://www.isolutionteam.co.uk/?p=37</guid>
		<description><![CDATA[I was using following code to show  Popup window

//opens a pop up window
function PopupWindow(url) {
mywindow =window.open( url, &#8220;Popupwindow&#8221;,
&#8220;location=1,status=0,scrollbars=1,width=800,
height=600,resizable=1,toolbar=0&#8243; )

Above code was showing Popwindow then Requirement changed and we needed a Modal popup Window.  Then I found followin code which provides required functionality.

//opens a pop up window
function PopupWindow(url) {
var ie=document.all;
if (ie)
window.showModalDialog(url,&#8221;Window&#8221;,&#8221;status:no; help:no;
dialogWidth:1200px; dialogHeight:768px&#8221;);
else
{
var mywindow =window.open( url, &#8220;Popupwindow&#8221;,
&#8220;location=1,status=no,scrollbars=1,width=1200px,
height=768px,resizable=1,toolbar=0&#8243; )
mywindow.focus();
}
} 

I [...]]]></description>
		<wfw:commentRss>http://www.isolutionteam.co.uk/2008/07/16/javascript-showmodaldialog-aspx-page_load-event-not-fires/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Skype + three = Savings</title>
		<link>http://www.isolutionteam.co.uk/2008/07/05/skype-three-savings/</link>
		<comments>http://www.isolutionteam.co.uk/2008/07/05/skype-three-savings/#comments</comments>
		<pubDate>Sat, 05 Jul 2008 12:14:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Have Your Say]]></category>

		<category><![CDATA[Internet stuff]]></category>

		<category><![CDATA[how to save phone bills]]></category>

		<category><![CDATA[internet phone]]></category>

		<category><![CDATA[save on international calls]]></category>

		<category><![CDATA[save phone bills]]></category>

		<category><![CDATA[Skype]]></category>

		<category><![CDATA[three]]></category>

		<category><![CDATA[three with skype]]></category>

		<guid isPermaLink="false">http://www.isolutionteam.co.uk/?p=36</guid>
		<description><![CDATA[A part of my family lives in Asia while I am living in United Kingdom. I am a customer of Three (3) mobile phone services  provider. Recently I updated my contract with three and I got Nokia 6120.

My wife&#8217;s family also lives in Asia. My parents and my wife&#8217;s family we all  talk [...]]]></description>
		<wfw:commentRss>http://www.isolutionteam.co.uk/2008/07/05/skype-three-savings/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Accent Insensitive search in sql server + COLLATE SQL_Latin1_General_CP1_CI_AI</title>
		<link>http://www.isolutionteam.co.uk/2008/05/12/accent-insensitive-search-in-sql-server-collate-sql_latin1_general_cp1_ci_ai/</link>
		<comments>http://www.isolutionteam.co.uk/2008/05/12/accent-insensitive-search-in-sql-server-collate-sql_latin1_general_cp1_ci_ai/#comments</comments>
		<pubDate>Mon, 12 May 2008 14:24:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Database]]></category>

		<category><![CDATA[SQL (Structured Query Language)]]></category>

		<category><![CDATA[accent insensitive]]></category>

		<category><![CDATA[collate]]></category>

		<category><![CDATA[foreign characters]]></category>

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

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

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

		<guid isPermaLink="false">http://www.isolutionteam.co.uk/?p=34</guid>
		<description><![CDATA[We were facing a problem in searcing the exact data from Microsoft sql server 2005 database, Our database is containng foreign language characters ,çéèêëñòóôõöàáâãäåìíîïùúûüŵŷýÿ as you can see in following data, I was wondering how we can solve this problem, I tried to search it on the google and posted this in some forums.
The Coleg Sir Gâr  
Sabhal Mòr [...]]]></description>
		<wfw:commentRss>http://www.isolutionteam.co.uk/2008/05/12/accent-insensitive-search-in-sql-server-collate-sql_latin1_general_cp1_ci_ai/feed/</wfw:commentRss>
		</item>
		<item>
		<title>I want to add / share my post to social networks + wordpress</title>
		<link>http://www.isolutionteam.co.uk/2008/05/10/i-want-to-add-share-my-post-to-social-networks-wordpress/</link>
		<comments>http://www.isolutionteam.co.uk/2008/05/10/i-want-to-add-share-my-post-to-social-networks-wordpress/#comments</comments>
		<pubDate>Sat, 10 May 2008 14:17:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Have Your Say]]></category>

		<category><![CDATA[add post to social network sites]]></category>

		<category><![CDATA[how to give facility of adding post to socila sites.]]></category>

		<category><![CDATA[social]]></category>

		<category><![CDATA[social netowrking]]></category>

		<category><![CDATA[submit post to digg]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.isolutionteam.co.uk/?p=33</guid>
		<description><![CDATA[If you run your blog site using Wordpress Content Management System (CMS) and you  want to give your readers facility to add or share their/your post to other social networks then you need to add a Plugin. I am using Sociabel plugin with Wordpress version 2.5.1.  I am using default theme of Wordpress. [...]]]></description>
		<wfw:commentRss>http://www.isolutionteam.co.uk/2008/05/10/i-want-to-add-share-my-post-to-social-networks-wordpress/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Fill Array List with All properties of a class</title>
		<link>http://www.isolutionteam.co.uk/2008/05/07/fill-array-list-with-all-properties-of-a-class/</link>
		<comments>http://www.isolutionteam.co.uk/2008/05/07/fill-array-list-with-all-properties-of-a-class/#comments</comments>
		<pubDate>Wed, 07 May 2008 11:09:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[programming]]></category>

		<category><![CDATA[array]]></category>

		<category><![CDATA[arraylist]]></category>

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

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

		<category><![CDATA[fill array list]]></category>

		<category><![CDATA[get class properties list]]></category>

		<category><![CDATA[properties]]></category>

		<guid isPermaLink="false">http://www.isolutionteam.co.uk/2008/05/07/fill-array-list-with-all-properties-of-a-class/</guid>
		<description><![CDATA[Following Method/function will return list of class properties in  an array list.
PropertyInfo class is is used to get the properties of the object passed to the method parameter. You may need to add System.Refelection directive in your page.
I am using this in my web development. Microsoft c-sharp , .net, .aspx
private ArrayList getPropertis(object obj)
{Type objtype [...]]]></description>
		<wfw:commentRss>http://www.isolutionteam.co.uk/2008/05/07/fill-array-list-with-all-properties-of-a-class/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Reqular experssion RegEx, C# , asp.net , vb.net</title>
		<link>http://www.isolutionteam.co.uk/2008/04/25/reqular-experssion-regex-c-aspnet-vbnet/</link>
		<comments>http://www.isolutionteam.co.uk/2008/04/25/reqular-experssion-regex-c-aspnet-vbnet/#comments</comments>
		<pubDate>Fri, 25 Apr 2008 15:54:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Asp.net]]></category>

		<category><![CDATA[programming]]></category>

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

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

		<category><![CDATA[programing]]></category>

		<category><![CDATA[regular  epxression]]></category>

		<category><![CDATA[strings]]></category>

		<category><![CDATA[validation]]></category>

		<guid isPermaLink="false">http://www.isolutionteam.co.uk/2008/04/25/reqular-experssion-regex-c-aspnet-vbnet/</guid>
		<description><![CDATA[Regular expression:
Regular Expression is a great way to manipulate strings for example matching, finding, validating Data, Specailly string manipulaion becames handy while we use reqular expression.
We can use Regular expression on both Serer and client side. We do use it with asp.net validation controls. 
Charcther matching:
. ^ $ * + ? { [ ] \ [...]]]></description>
		<wfw:commentRss>http://www.isolutionteam.co.uk/2008/04/25/reqular-experssion-regex-c-aspnet-vbnet/feed/</wfw:commentRss>
		</item>
		<item>
		<title>If you have to provide some services to all users of your website then&#8230;.</title>
		<link>http://www.isolutionteam.co.uk/2008/04/21/if-you-have-to-provide-some-services-to-all-users-of-your-website-then/</link>
		<comments>http://www.isolutionteam.co.uk/2008/04/21/if-you-have-to-provide-some-services-to-all-users-of-your-website-then/#comments</comments>
		<pubDate>Mon, 21 Apr 2008 12:07:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Asp.net]]></category>

		<category><![CDATA[application object]]></category>

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

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

		<category><![CDATA[global.asax]]></category>

		<category><![CDATA[hash table]]></category>

		<category><![CDATA[hashtable]]></category>

		<category><![CDATA[users]]></category>

		<guid isPermaLink="false">http://www.isolutionteam.co.uk/2008/04/21/if-you-have-to-provide-some-services-to-all-users-of-your-website-then/</guid>
		<description><![CDATA[If you have to provide some data or services to all of your web users then best option is to put those data values into applicaiton object. This process will make your application very fast.
You can use Global.asax  file and can use  following event.  Following code first puts value into a hashtable and then this [...]]]></description>
		<wfw:commentRss>http://www.isolutionteam.co.uk/2008/04/21/if-you-have-to-provide-some-services-to-all-users-of-your-website-then/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Changing Name doesn&#8217;t improve the Service.</title>
		<link>http://www.isolutionteam.co.uk/2008/04/07/changing-name-doesnt-improve-the-service/</link>
		<comments>http://www.isolutionteam.co.uk/2008/04/07/changing-name-doesnt-improve-the-service/#comments</comments>
		<pubDate>Mon, 07 Apr 2008 09:04:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Have Your Say]]></category>

		<category><![CDATA[east anglia]]></category>

		<category><![CDATA[East Anglia trains]]></category>

		<category><![CDATA[London]]></category>

		<category><![CDATA[London Liverpool street]]></category>

		<category><![CDATA[nationa epxress]]></category>

		<category><![CDATA[Problem]]></category>

		<category><![CDATA[signal]]></category>

		<category><![CDATA[train]]></category>

		<guid isPermaLink="false">http://www.isolutionteam.co.uk/2008/04/07/changing-name-doesnt-improve-the-service/</guid>
		<description><![CDATA[Nationa Express East Anglia trains are getting late. Most of the time these are due to signaling porblem near shenfield or congustion cratetion near or after startford area. I am travelling on National Express since 18th Feb 2008 on daily basis. Before Nationla Express it was &#8220;One Railway&#8221;. Changing Name didn&#8217;t improve
the service as it [...]]]></description>
		<wfw:commentRss>http://www.isolutionteam.co.uk/2008/04/07/changing-name-doesnt-improve-the-service/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Linked Servers +Microsft SQL Server, Excel, Access (Ms-Access)</title>
		<link>http://www.isolutionteam.co.uk/2008/03/27/linked-servers-microsft-sql-server-excel-access-ms-access/</link>
		<comments>http://www.isolutionteam.co.uk/2008/03/27/linked-servers-microsft-sql-server-excel-access-ms-access/#comments</comments>
		<pubDate>Thu, 27 Mar 2008 10:07:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SQL (Structured Query Language)]]></category>

		<category><![CDATA[Excel]]></category>

		<category><![CDATA[how to create link server]]></category>

		<category><![CDATA[how to drop link server]]></category>

		<category><![CDATA[link server]]></category>

		<category><![CDATA[Microsfot]]></category>

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

		<guid isPermaLink="false">http://www.isolutionteam.co.uk/2008/03/27/linked-servers-microsft-sql-server-excel-access-ms-access/</guid>
		<description><![CDATA[Linked Servers + Distributed Queries 
Linking to External Data Sources 
Following stored procedure will allow you to create a link to another SQL Server. Link server name would be “SECOND” 
EXEC sp_addlinkedserver   
@server=&#8216;myservername&#8217;,&#8211;name you will be using to refer link server  @srvproduct =  &#8216;Excel&#8217;, &#8211;Product name i.e excel  @provider = [...]]]></description>
		<wfw:commentRss>http://www.isolutionteam.co.uk/2008/03/27/linked-servers-microsft-sql-server-excel-access-ms-access/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
