Edit synonyms in MS SQL Server 2005 - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T07:10:11Zhttp://stackoverflow.com/feeds/question/1077407http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1077407/edit-synonyms-in-ms-sql-server-20053Edit synonyms in MS SQL Server 2005Margaret2009-07-03T01:03:46Z2009-07-03T02:31:17Z
<p>Out of curiousity, is there any way to <em>edit</em> an existing synonym? That is, change which table the synonym is pointing to... </p>
<p>Thus far I seem to have had to delete and re-create them, because they're locked from being edited. It's not a big deal, but at the same time it's a little irritating.</p>
<p>GUI or scripting, but preferably GUI.</p>
http://stackoverflow.com/questions/1077407/edit-synonyms-in-ms-sql-server-2005/1077443#10774433Answer by jn29098 for Edit synonyms in MS SQL Server 2005jn290982009-07-03T01:24:56Z2009-07-03T01:24:56Z<p>There is no </p>
<pre><code>ALTER SYNONYM
</code></pre>
<p>You have to drop and recreate the synonym. See <a href="http://www.developer.com/db/article.php/3613301" rel="nofollow">this article</a>.</p>
http://stackoverflow.com/questions/1077407/edit-synonyms-in-ms-sql-server-2005/1077562#10775620Answer by Raj for Edit synonyms in MS SQL Server 2005Raj2009-07-03T02:31:17Z2009-07-03T02:31:17Z<p>Unfortunately there is no ALTER SYNONYM. There is however a feedback in Microsoft Connect asking for this functionality. The reply from Microsoft is not very clear though. They talk about some added functionality in katmai, but I am not able to understand that. Check this <a href="http://connect.microsoft.com/SQLServer/feedback/ViewFeedback.aspx?FeedbackID=318951" rel="nofollow">link</a></p>
<p>I think synonyms are vastly under-rated and under-utilized. Consider this scenario. You are running SQL Express with a limit of 4 GB per database. When your DB is almost at 4 GB, just move the larger tables to another DB and create a synonym in the original DB and you have effectively increased your DB size to beyond 4 GB.</p>
<p>Though the answer to the OP's question is NO, just thought I should share this with the community to benefit those of us using SQL express and are stumped with the 4 GB limit.</p>
<p>Raj</p>