SQL Server - Synonyms Tips & Tricks? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T00:51:33Z http://stackoverflow.com/feeds/question/796791 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/796791/sql-server-synonyms-tips-tricks 4 SQL Server - Synonyms Tips & Tricks? Chad Grant 2009-04-28T08:22:19Z 2009-09-01T19:11:59Z <p>I've been doing a lot of DB refactoring lately and synonyms have come in incredibly useful. When I originally put in the synonyms I was thinking they would be very temporary while I refactor. Now I am thinking there might be some good reasons to keep some of these synonyms around.</p> <ul> <li><p>Has anyone used them as full blow abstraction layer?</p></li> <li><p>What are the performance costs?</p></li> <li><p>Any gotchas with indexes?</p></li> <li><p>Tips or Tricks?</p></li> </ul> <p>My first question, so please be gentle. </p> <p>Thanks</p> http://stackoverflow.com/questions/796791/sql-server-synonyms-tips-tricks/797768#797768 1 Answer by John Sansom for SQL Server - Synonyms Tips & Tricks? John Sansom 2009-04-28T12:54:42Z 2009-04-28T12:54:42Z <p>As a synonym is an abstraction/alternative name for an already existing database object, in the case of a table, index behaviour is identical to that of the underlying object i.e. when execution plans are generated, the same plan is generated irrespective of using the table name or corresponsing synonym.</p> http://stackoverflow.com/questions/796791/sql-server-synonyms-tips-tricks/838869#838869 2 Answer by wire science for SQL Server - Synonyms Tips & Tricks? wire science 2009-05-08T08:48:52Z 2009-05-08T08:48:52Z <p>Yes, synonyms can be used as an abstraction layer, or layer of indirection. For instance, if you need to access objects in an external database where the actual database name will not be known until runtime. You can write your sql referring to objects by synonym name, and then dynamically create the synonyms later.</p> <p>There are no index gotchas: if the synonym refers to a table or indexed view, then whatever indexes are defined on those objects are in play.</p> <p>Performance should be the same as explicitly referring to the object by fully-qualified name.</p> http://stackoverflow.com/questions/796791/sql-server-synonyms-tips-tricks/1364143#1364143 0 Answer by Jarred Froman for SQL Server - Synonyms Tips & Tricks? Jarred Froman 2009-09-01T19:11:59Z 2009-09-01T19:11:59Z <p>Actually, I have come across a gotcha when using indexes.... I'm not sure if there is a way to create related posts on this site, but here is the link to my issue with synonyms and table indexes.</p> <p><a href="http://stackoverflow.com/questions/1362916/sql-server-table-synonyms-with-indexes">http://stackoverflow.com/questions/1362916/sql-server-table-synonyms-with-indexes</a></p>