<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: SQL SERVER &#8211; Explanation and Example Four Part Name</title>
	<atom:link href="http://blog.sqlauthority.com/2007/06/26/sql-server-explanation-and-example-four-part-name/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2007/06/26/sql-server-explanation-and-example-four-part-name/</link>
	<description>SQL, SQL Server, MySQL, Big Data and NoSQL</description>
	<lastBuildDate>Wed, 19 Jun 2013 15:04:54 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Randeep</title>
		<link>http://blog.sqlauthority.com/2007/06/26/sql-server-explanation-and-example-four-part-name/#comment-156146</link>
		<dc:creator><![CDATA[Randeep]]></dc:creator>
		<pubDate>Thu, 11 Aug 2011 10:51:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/26/sql-server-explanation-and-example-four-part-name/#comment-156146</guid>
		<description><![CDATA[Sir i am new about to linked server.i am using this in my local server

sp_addlinkedserver   
   @server=&#039;ip address of my remote server&#039;, 
   @srvproduct=&#039;&#039;,
   @provider=&#039;SQLNCLI&#039;, 
   @datasrc=&#039;databasename&#039;

and then i make this query:

SELECT *

FROM OPENQUERY(&#039;ipadress&#039;,databasename.uid.&#039;select * from tbl_Products &#039;)

it not work. plz sir help me.
Thanks
Randeep Chauhan]]></description>
		<content:encoded><![CDATA[<p>Sir i am new about to linked server.i am using this in my local server</p>
<p>sp_addlinkedserver<br />
   @server=&#8217;ip address of my remote server&#8217;,<br />
   @srvproduct=&#8221;,<br />
   @provider=&#8217;SQLNCLI&#8217;,<br />
   @datasrc=&#8217;databasename&#8217;</p>
<p>and then i make this query:</p>
<p>SELECT *</p>
<p>FROM OPENQUERY(&#8216;ipadress&#8217;,databasename.uid.&#8217;select * from tbl_Products &#8216;)</p>
<p>it not work. plz sir help me.<br />
Thanks<br />
Randeep Chauhan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gokulram</title>
		<link>http://blog.sqlauthority.com/2007/06/26/sql-server-explanation-and-example-four-part-name/#comment-86724</link>
		<dc:creator><![CDATA[Gokulram]]></dc:creator>
		<pubDate>Mon, 06 Sep 2010 06:09:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/26/sql-server-explanation-and-example-four-part-name/#comment-86724</guid>
		<description><![CDATA[Hi,
   I am very much impressed with your sql blogs and posting.Pinal I have newly stepped into SSIS package could you please help me around in this ....

     How to run a stored procedure in ssis package .And i have to pass the parameter&#039;s from excel sheet .Like this 

 =&quot;exec st_example &#039;&quot; &amp;F2 &amp;&quot;&#039;, &quot; &amp; E2 &amp; &quot;, &#039;&quot; &amp; H2 &amp; &quot;&#039;&quot; 

and in the excel sheet , i need to pass the parameter by row by row .it would contains about 800 row &#039;s .i am running this stored prod manually daily.

 
And i have to schedule this job and send an alert mail.]]></description>
		<content:encoded><![CDATA[<p>Hi,<br />
   I am very much impressed with your sql blogs and posting.Pinal I have newly stepped into SSIS package could you please help me around in this &#8230;.</p>
<p>     How to run a stored procedure in ssis package .And i have to pass the parameter&#8217;s from excel sheet .Like this </p>
<p> =&#8221;exec st_example &#8216;&#8221; &amp;F2 &amp;&#8221;&#8216;, &#8221; &amp; E2 &amp; &#8220;, &#8216;&#8221; &amp; H2 &amp; &#8220;&#8216;&#8221; </p>
<p>and in the excel sheet , i need to pass the parameter by row by row .it would contains about 800 row &#8216;s .i am running this stored prod manually daily.</p>
<p>And i have to schedule this job and send an alert mail.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2007/06/26/sql-server-explanation-and-example-four-part-name/#comment-59595</link>
		<dc:creator><![CDATA[Pinal Dave]]></dc:creator>
		<pubDate>Mon, 11 Jan 2010 18:27:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/26/sql-server-explanation-and-example-four-part-name/#comment-59595</guid>
		<description><![CDATA[Hello Kasif,

1. Copy data using Import/Export wizard or SSIS package.
2. Insert data using OPENQUERY function
3. Insert data using OPENROWSOURCE function
4. Insert using 4 part naming. you would need to create a LinkedServer for this.
5. Create script of data at source server and run on target database. As this would need more workaround so not recommonded.

Regards,
Pinal Dave]]></description>
		<content:encoded><![CDATA[<p>Hello Kasif,</p>
<p>1. Copy data using Import/Export wizard or SSIS package.<br />
2. Insert data using OPENQUERY function<br />
3. Insert data using OPENROWSOURCE function<br />
4. Insert using 4 part naming. you would need to create a LinkedServer for this.<br />
5. Create script of data at source server and run on target database. As this would need more workaround so not recommonded.</p>
<p>Regards,<br />
Pinal Dave</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kashif</title>
		<link>http://blog.sqlauthority.com/2007/06/26/sql-server-explanation-and-example-four-part-name/#comment-59563</link>
		<dc:creator><![CDATA[Kashif]]></dc:creator>
		<pubDate>Mon, 11 Jan 2010 08:19:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/26/sql-server-explanation-and-example-four-part-name/#comment-59563</guid>
		<description><![CDATA[brother i will need to enter the data to the table of db1 from db2 and db1 is on remote server
please send me the syntax if possible]]></description>
		<content:encoded><![CDATA[<p>brother i will need to enter the data to the table of db1 from db2 and db1 is on remote server<br />
please send me the syntax if possible</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER - Guidelines and Coding Standards Part - 1 Journey to SQL Authority with Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2007/06/26/sql-server-explanation-and-example-four-part-name/#comment-47502</link>
		<dc:creator><![CDATA[SQL SERVER - Guidelines and Coding Standards Part - 1 Journey to SQL Authority with Pinal Dave]]></dc:creator>
		<pubDate>Thu, 26 Feb 2009 12:13:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/26/sql-server-explanation-and-example-four-part-name/#comment-47502</guid>
		<description><![CDATA[[...] While using JOINs in your SQL query always prefix column name with the table name. (Example). If additionally require then prefix Table name with ServerName, DatabaseName, DatabaseOwner. (Example) [...]]]></description>
		<content:encoded><![CDATA[<p>[...] While using JOINs in your SQL query always prefix column name with the table name. (Example). If additionally require then prefix Table name with ServerName, DatabaseName, DatabaseOwner. (Example) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Trevor</title>
		<link>http://blog.sqlauthority.com/2007/06/26/sql-server-explanation-and-example-four-part-name/#comment-35410</link>
		<dc:creator><![CDATA[Trevor]]></dc:creator>
		<pubDate>Wed, 23 Apr 2008 16:19:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/26/sql-server-explanation-and-example-four-part-name/#comment-35410</guid>
		<description><![CDATA[Aren&#039;t all indexes created as separate structures from a table?   Although the index is created against a particular
table, doesn&#039;t the index itself exist in the database as a separate, self-contained structure?

Which index type -- clustered or nonclustered -- logically
sorts the database of a table?]]></description>
		<content:encoded><![CDATA[<p>Aren&#8217;t all indexes created as separate structures from a table?   Although the index is created against a particular<br />
table, doesn&#8217;t the index itself exist in the database as a separate, self-contained structure?</p>
<p>Which index type &#8212; clustered or nonclustered &#8212; logically<br />
sorts the database of a table?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Trevor</title>
		<link>http://blog.sqlauthority.com/2007/06/26/sql-server-explanation-and-example-four-part-name/#comment-35408</link>
		<dc:creator><![CDATA[Trevor]]></dc:creator>
		<pubDate>Wed, 23 Apr 2008 15:22:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/26/sql-server-explanation-and-example-four-part-name/#comment-35408</guid>
		<description><![CDATA[In the example for a 4-part name, does the server name refer to the name of the computer or does it refer to the name of the SQL Server instance?  These will not necessarily be the same names.]]></description>
		<content:encoded><![CDATA[<p>In the example for a 4-part name, does the server name refer to the name of the computer or does it refer to the name of the SQL Server instance?  These will not necessarily be the same names.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER - Identifiers As Valid Object Names Journey to SQL Authority with Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2007/06/26/sql-server-explanation-and-example-four-part-name/#comment-35298</link>
		<dc:creator><![CDATA[SQL SERVER - Identifiers As Valid Object Names Journey to SQL Authority with Pinal Dave]]></dc:creator>
		<pubDate>Tue, 22 Apr 2008 09:25:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/26/sql-server-explanation-and-example-four-part-name/#comment-35298</guid>
		<description><![CDATA[[...] 20, 2008 by pinaldave    Previous I wrote blog post about SQL SERVER - Explanation and Example Four Part Name. It was explaining the new feature of SQL Server 2005 of Schema. Few days ago I received email from [...]]]></description>
		<content:encoded><![CDATA[<p>[...] 20, 2008 by pinaldave    Previous I wrote blog post about SQL SERVER &#8211; Explanation and Example Four Part Name. It was explaining the new feature of SQL Server 2005 of Schema. Few days ago I received email from [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER - 2005 - Introduction and Explanation to SYNONYM - Helpful T-SQL Feature for Developer Journey to SQL Authority with Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2007/06/26/sql-server-explanation-and-example-four-part-name/#comment-31894</link>
		<dc:creator><![CDATA[SQL SERVER - 2005 - Introduction and Explanation to SYNONYM - Helpful T-SQL Feature for Developer Journey to SQL Authority with Pinal Dave]]></dc:creator>
		<pubDate>Wed, 09 Jan 2008 08:58:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/26/sql-server-explanation-and-example-four-part-name/#comment-31894</guid>
		<description><![CDATA[[...] have been referencing database objects in four part names. SQL Server 2005 introduces the concept of a synonym. A synonyms is a single-part name which can [...]]]></description>
		<content:encoded><![CDATA[<p>[...] have been referencing database objects in four part names. SQL Server 2005 introduces the concept of a synonym. A synonyms is a single-part name which can [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER - Executing Remote Stored Procedure - Calling Stored Procedure on Linked Server Journey to SQL Authority with Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2007/06/26/sql-server-explanation-and-example-four-part-name/#comment-14901</link>
		<dc:creator><![CDATA[SQL SERVER - Executing Remote Stored Procedure - Calling Stored Procedure on Linked Server Journey to SQL Authority with Pinal Dave]]></dc:creator>
		<pubDate>Sat, 06 Oct 2007 14:01:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/26/sql-server-explanation-and-example-four-part-name/#comment-14901</guid>
		<description><![CDATA[[...] 1 : Remote Stored Procedure can be called as four part name: Syntax: EXEC [RemoteServer] .DatabaseName.DatabaseOwner.StoredProcedureName &#8216;Params&#8217; [...]]]></description>
		<content:encoded><![CDATA[<p>[...] 1 : Remote Stored Procedure can be called as four part name: Syntax: EXEC [RemoteServer] .DatabaseName.DatabaseOwner.StoredProcedureName &#8216;Params&#8217; [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
