join the MSSQLTips community

Today's Site Sponsor


 

SQL Compare quickly and easily compares and synchronizes SQL Server database schemas
 



I generated better data in only seconds...

SQL Server Four-part naming

Written By: Greg Robidoux -- 11/6/2006 -- read/post comments -- print -- Bookmark and Share

Rating: (not rated yet) Rate

Problem
With some applications there may be a need to pull data from other instances of SQL Server or from other databases within the same instance.  Often this can be achieved by having multiple connections from your application pointing to each of these data sources. This is great for this one application, but what if there is a need to do this within SQL Server or for stored procedures or views that are called from several applications?

Solution
SQL Server offers the functionality to reference objects within the database you are working or to reference objects in another database or even a different instance of SQL Server.  This is referred to as four-part naming.  The reason for this name is that there can be four parts that are used to reference the object as the following shows:

For SQL Server 2000
server.database.owner.object

For SQL Server 2005
server.database.schema.object

Object
In most cases, your SQL Server code probably only references the object name such as:

SELECT * FROM sysobjects

Owner or Schema
To further qualify this we can also specify the owner or schema of the object:

SELECT * FROM dbo.sysobjects

Database
To take this a step further we can also reference the database that the object resides in such as:

SELECT * FROM master.dbo.sysobjects

Server
And last we can reference this table on a totally different server by specifying the server name:

SELECT * FROM test1.master.dbo.sysobjects

The ability to reference an object this way opens up several possibilities whether it be within the same database or on other databases or other servers.  One example is the use of the owner or schema part.  This alone allows you to have the same object name in your database several times and with the owner or schema reference you can now signify which object you actually want to use in your code.

Also, if you have a standard database that may be used by multiple databases, by using the database part you can now have multiple databases pull in this standard data by using the database part of the four-part name.

And lastly, you can even separate your data even further by using the fourth part of the name that references the server.  One thing to note is that you will need to setup linked servers in order to use this option.  More information about linked servers can be found here for SQL Server 2000 and for SQL Server 2005.  Another thing to note is that there may be some performance issues if you are linking servers across your LAN or WAN and also if you are pulling in a lot of data.

Next Steps

  • Take a look at your code to see if there are areas that could benefit from this four-part naming structure
  • Another option to look at to retrieve data from another server or data source is OPENROWSET
  • Look at the use of SYNONYMS in SQL Server 2005 to simplify four-part naming
  • Also, take a look at ownership chaining and security/permission issues
Readers Who Read This Tip Also Read Free Live Webcast Comment or Ask Questions About This Tip


Sponsor Information
Free SQL Server performance monitoring dashboard – Idera SQL check

Try Red Gate SQL Backup Pro for smaller, more robust SQL Server backups. Download a free trial now!

We fill in the gaps... SQL Server Training, Development, Performance Tuning, SSIS and more

Come learn SharePoint @ MSSharePointTips.com

Valuable SQL Server web casts on Performance Tuning, Development, Administration, Disaster Recovery, Replication and more...


Get Our Tips Newsletter

We keep 50,000+ SQL Server professionals informed.



Idera - SQL compliance manager

SQL compliance manager is a comprehensive auditing solution that tells you who did what, when and how on your SQL Servers. SQL compliance manager helps you ensure compliance with regulatory and data security requirements.

Download now!

More SQL Server Tools
SQL comparison toolset

SQL Backup

SQL secure

SQL compliance manager

SQL Compare




Copyright (c) 2006-2010 Edgewood Solutions, LLC All rights reserved
privacy statement | disclaimer | copyright | advertise | write for mssqltips | feedback | about
Some names and products listed are the registered trademarks of their respective owners.


CareerQandA.com | MSSharePointTips.com | MSSQLTips.com