What is the use of SYNONYM in SQL Server 2008?
|
|
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. |
||||
|
|
Seems (from here) to create an alias for another table, so that you can refer to it easily. Like as Edit: works for user-defined functions, local and remote objects, not only tables. |
|||
|
|
|
||||
|
|
|
MSDN has a good explanation here: http://msdn.microsoft.com/en-us/library/ms177544.aspx |
|||||||||||||||
|
|
The following link has a nice explanation. It is useful for SQL Server 2005, 2008/R2 and 2012. |
|||
|
|