SQL Server - Synonyms Tips & Tricks? - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T00:51:33Zhttp://stackoverflow.com/feeds/question/796791http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/796791/sql-server-synonyms-tips-tricks4SQL Server - Synonyms Tips & Tricks?Chad Grant2009-04-28T08:22:19Z2009-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#7977681Answer by John Sansom for SQL Server - Synonyms Tips & Tricks?John Sansom2009-04-28T12:54:42Z2009-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#8388692Answer by wire science for SQL Server - Synonyms Tips & Tricks?wire science2009-05-08T08:48:52Z2009-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#13641430Answer by Jarred Froman for SQL Server - Synonyms Tips & Tricks?Jarred Froman2009-09-01T19:11:59Z2009-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>