Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the use of SYNONYM in SQL Server 2008?

share|improve this question
1  
@Adriano: The term is 'down vote', and no question is too simple for a wiki site like SO.com. Your comment is unnecessary. – GEOCHET Aug 7 '09 at 17:37

5 Answers

In some enterprise systems, you may have to deal with remote objects over which you have no control. For example, a database that is maintained by another department or team.

Synonyms can help you decouple the name and location of the underlying object from your SQL code. That way you can code against a synonym table even if the table you want is moved to a new server/database or renamed.

For example, I could write a query like this:

insert into MyTable (...) select ... from remoteServer.remoteDatabase.dbo.Employee

but then if the server, or database, schema, or table changes it would impact my code. Instead I can create a synonym for the remote server and use the synonym instead:

insert into MyTable (...) select ... from EmployeeSynonym

If the underlying object changes location or name, I only need to update my synonym to point to the new object.

http://www.mssqltips.com/sqlservertip/1820/use-synonyms-to-abstract-the-location-of-sql-server-database-objects/

share|improve this answer
Can I get to know the current identity value of row inserted using function like this-> Select IDENT_CURRENT('<Synonym name>')? I don't want to get the identity value by doing max(ID) of that table. Is it possible? – ivorykoder May 7 at 7:20

Seems (from here) to create an alias for another table, so that you can refer to it easily. Like as select * from table longname as ln but permanent and pervasive.

Edit: works for user-defined functions, local and remote objects, not only tables.

share|improve this answer

An example of the usefulness of this might be if you had a stored procedure on a Users database that needed to access a Clients table on another production server. Assuming you created the stored procedure in the database Users, you might want to set up a synonym such as the following: USE Users; GO CREATE SYNONYM Clients FOR Offsite01.Production.dbo.Clients; GO

Now when writing the stored procedure instead of having to write out that entire alias every time you accessed the table you can just use the alias Clients. Furthermore, if you ever change the location or the name of the production database location all you need to do is modify one synonym instead of having to modify all of the stored procedures which reference the old server.

From: http://blog.sqlauthority.com/2008/01/07/sql-server-2005-introduction-and-explanation-to-synonym-helpful-t-sql-feature-for-developer/

share|improve this answer

MSDN has a good explanation here: http://msdn.microsoft.com/en-us/library/ms177544.aspx

share|improve this answer
This is a horrible answer. Posting only a link is not what this site is about. I advise you start by reading the FAQ. – GEOCHET Aug 7 '09 at 17:38
Nevermind that I had already posted the same link, to boot. Though I wouldn't define this answer 'horrible'. At least, it's correct. – Adriano Varoli Piazza Aug 7 '09 at 20:55
1  
+1, sometimes you cannot write an answer as complete or as well as the linked article. what is the difference if you read it on SO or a linked page? – KM. Aug 14 '09 at 20:05
@KM: The difference might be thatyou don't get a bored geek like Rich B nagging at you. – Adriano Varoli Piazza Aug 18 '09 at 19:27
3  
This was a simple question, that I gave a simple answer to. I've read the FAQ and don't see anything objecting to posting a link to a definitive reference, although there is a section titled 'Be nice.' that you might want to take a look at again, Rich. – jamesaharvey Aug 18 '09 at 20:52

The following link has a nice explanation. It is useful for SQL Server 2005, 2008/R2 and 2012.

How and why should I use SQL Server 2005 synonyms?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.