<?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>SQL-Linked Server | Varinder Sandhu</title>
	<atom:link href="https://varindersandhu.in/tag/sql-linked-server/feed/" rel="self" type="application/rss+xml" />
	<link>https://varindersandhu.in</link>
	<description>Keep it Simple and Smart</description>
	<lastBuildDate>Tue, 12 Jul 2011 15:37:03 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.3</generator>

<image>
	<url>https://varindersandhu.in/wp-content/uploads/2020/05/varindersandhu_favicon.ico</url>
	<title>SQL-Linked Server | Varinder Sandhu</title>
	<link>https://varindersandhu.in</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">22788835</site>	<item>
		<title>SQL Server – Linked Server &#8211; Mapped all users with one statement</title>
		<link>https://varindersandhu.in/2011/03/29/sql-server-linked-server-mapped-all-users-with-one-statement/</link>
		
		<dc:creator><![CDATA[Varinder Sandhu]]></dc:creator>
		<pubDate>Tue, 29 Mar 2011 07:01:18 +0000</pubDate>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL-General]]></category>
		<category><![CDATA[SQL-Linked Server]]></category>
		<category><![CDATA[SQL-Scripts]]></category>
		<category><![CDATA[SQL-Tips and Tricks]]></category>
		<category><![CDATA[Varinder Sandhu]]></category>
		<category><![CDATA[Create Linked Server]]></category>
		<category><![CDATA[SQL Server]]></category>
		<guid isPermaLink="false">http://theitarticles.wordpress.com/?p=661</guid>

					<description><![CDATA[<p>Hello Friends, I have setup the Linked server with the help of script here. My one of colleague helps me to write the script with we can map all user with one statement. This script will map all local SQL server users with remote user that you provide in the</p>
<p>The post <a href="https://varindersandhu.in/2011/03/29/sql-server-linked-server-mapped-all-users-with-one-statement/">SQL Server – Linked Server – Mapped all users with one statement</a> first appeared on <a href="https://varindersandhu.in">Varinder Sandhu</a>.</p>]]></description>
		
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">661</post-id>	</item>
		<item>
		<title>Query Optimization with Linked Server</title>
		<link>https://varindersandhu.in/2011/02/12/query-optimization-with-linked-server/</link>
		
		<dc:creator><![CDATA[Varinder Sandhu]]></dc:creator>
		<pubDate>Sat, 12 Feb 2011 06:45:11 +0000</pubDate>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL-Linked Server]]></category>
		<category><![CDATA[Varinder Sandhu]]></category>
		<category><![CDATA[Query Optimization]]></category>
		<category><![CDATA[SQL Server]]></category>
		<guid isPermaLink="false">http://theitarticles.wordpress.com/?p=512</guid>

					<description><![CDATA[<p>Hello Friends, I have faced a problem in SQL queries with Linked server; I just want to share with you all. Let me explain with example as below Say, we have set of applications which are running on SQL 2000, due to some reason we need to migrate sub set</p>
<p>The post <a href="https://varindersandhu.in/2011/02/12/query-optimization-with-linked-server/">Query Optimization with Linked Server</a> first appeared on <a href="https://varindersandhu.in">Varinder Sandhu</a>.</p>]]></description>
		
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">512</post-id>	</item>
		<item>
		<title>Linked Server</title>
		<link>https://varindersandhu.in/2010/09/26/linked-server/</link>
					<comments>https://varindersandhu.in/2010/09/26/linked-server/#comments</comments>
		
		<dc:creator><![CDATA[Varinder Sandhu]]></dc:creator>
		<pubDate>Sun, 26 Sep 2010 01:38:00 +0000</pubDate>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL-General]]></category>
		<category><![CDATA[SQL-Linked Server]]></category>
		<category><![CDATA[SQL-Query]]></category>
		<category><![CDATA[SQL-Scripts]]></category>
		<category><![CDATA[Varinder Sandhu]]></category>
		<category><![CDATA[Linked Server]]></category>
		<category><![CDATA[SQL Server]]></category>
		<guid isPermaLink="false">http://theitarticles.wordpress.com/2010/09/26/linked-server</guid>

					<description><![CDATA[<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; Create  Linked Server through Scripts &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; USE [master] GO EXEC sp_addlinkedserver @server=&#8217;dsql2k&#8217;, @srvproduct=&#8221;, @provider=&#8217;SQLNCLI&#8217;, @datasrc=&#8217;source_name&#8217; GO USE [master] GO EXEC master.dbo.sp_serveroption @server=N&#8217;dsql2k&#8217;, @optname=N&#8217;rpc&#8217;, @optvalue=N&#8217;true&#8217; GO EXEC master.dbo.sp_serveroption @server=N&#8217;dsql2k&#8217;, @optname=N&#8217;rpc out&#8217;, @optvalue=N&#8217;true&#8217; GO select * from master.dbo.sysservers &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; Alternative Script to Create Linked Server and Mapping of Users &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; Use</p>
<p>The post <a href="https://varindersandhu.in/2010/09/26/linked-server/">Linked Server</a> first appeared on <a href="https://varindersandhu.in">Varinder Sandhu</a>.</p>]]></description>
		
					<wfw:commentRss>https://varindersandhu.in/2010/09/26/linked-server/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">23</post-id>	</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/

Page Caching using Disk: Enhanced 
Database Caching 15/129 queries in 0.029 seconds using Disk (Request-wide modification query)

Served from: varindersandhu.in @ 2025-10-30 15:13:34 by W3 Total Cache
-->