 




<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: pros and cons of using synonyms for packages&#8217; deployment</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/pros-and-cons-of-using-synonyms-for-packages-deployment/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/pros-and-cons-of-using-synonyms-for-packages-deployment/</link>
	<description></description>
	<lastBuildDate>Sun, 19 May 2013 03:14:28 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: actorjack</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/pros-and-cons-of-using-synonyms-for-packages-deployment/#comment-39164</link>
		<dc:creator>actorjack</dc:creator>
		<pubDate>Fri, 14 May 2004 12:49:47 +0000</pubDate>
		<guid isPermaLink="false">#comment-39164</guid>
		<description><![CDATA[Synonyms are generally a good tool for code reuse. But I have to play the Devil&#039;s advocate here - there ARE some disadvantages.

In general, you can&#039;t perform all the same actions on synonyms as you can or the objects they point to. E.g. you can&#039;t compile a synonym for a package.

Regards,
Kai
]]></description>
		<content:encoded><![CDATA[<p>Synonyms are generally a good tool for code reuse. But I have to play the Devil&#8217;s advocate here &#8211; there ARE some disadvantages.</p>
<p>In general, you can&#8217;t perform all the same actions on synonyms as you can or the objects they point to. E.g. you can&#8217;t compile a synonym for a package.</p>
<p>Regards,<br />
Kai</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: punitnb</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/pros-and-cons-of-using-synonyms-for-packages-deployment/#comment-39165</link>
		<dc:creator>punitnb</dc:creator>
		<pubDate>Wed, 12 May 2004 23:42:29 +0000</pubDate>
		<guid isPermaLink="false">#comment-39165</guid>
		<description><![CDATA[I haven&#039;t encountered any performance or maintenance problems. Synonyms improves the maintainability of pl/sql objects and improves security of the underlying objects. 

I have not used it  in distributed database. 
 
 
punit 
 
]]></description>
		<content:encoded><![CDATA[<p>I haven&#8217;t encountered any performance or maintenance problems. Synonyms improves the maintainability of pl/sql objects and improves security of the underlying objects. </p>
<p>I have not used it  in distributed database. </p>
<p>punit </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: abkeyte</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/pros-and-cons-of-using-synonyms-for-packages-deployment/#comment-39166</link>
		<dc:creator>abkeyte</dc:creator>
		<pubDate>Wed, 12 May 2004 12:22:50 +0000</pubDate>
		<guid isPermaLink="false">#comment-39166</guid>
		<description><![CDATA[Yes, I believe using synonyms improves the maintainability of pl/sql objects, and improves security as well.  I do not think it improves performance at all.

It will be simpler to maintain and control though should it will improve the DBA&#039;s performance :-)]]></description>
		<content:encoded><![CDATA[<p>Yes, I believe using synonyms improves the maintainability of pl/sql objects, and improves security as well.  I do not think it improves performance at all.</p>
<p>It will be simpler to maintain and control though should it will improve the DBA&#8217;s performance <img src='http://itknowledgeexchange.techtarget.com/itanswers/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 17051966</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/pros-and-cons-of-using-synonyms-for-packages-deployment/#comment-39167</link>
		<dc:creator>17051966</dc:creator>
		<pubDate>Wed, 12 May 2004 11:57:21 +0000</pubDate>
		<guid isPermaLink="false">#comment-39167</guid>
		<description><![CDATA[I have not had any negative impact from using synonyms for packages or other objects.  The developers and testers find the use of synonyms helpful.]]></description>
		<content:encoded><![CDATA[<p>I have not had any negative impact from using synonyms for packages or other objects.  The developers and testers find the use of synonyms helpful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tuple9i</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/pros-and-cons-of-using-synonyms-for-packages-deployment/#comment-39168</link>
		<dc:creator>tuple9i</dc:creator>
		<pubDate>Wed, 12 May 2004 11:44:23 +0000</pubDate>
		<guid isPermaLink="false">#comment-39168</guid>
		<description><![CDATA[I haven&#039;t found any real cons against using synonyms. As a matter of fact, I have had good experiences in reducing maintenance with changes in the DBMS.

About the only problem is when you change an underlying object. You may have to recompile the package. Easy to do with dynamic SQL and part of my daily cron job list.

As far as synonyms over dblinks. Make sure that the calling user has privileges on the underlying objects on both databases. Other than that, you shouldn&#039;t be having problems using them across links if they are setup correctly.]]></description>
		<content:encoded><![CDATA[<p>I haven&#8217;t found any real cons against using synonyms. As a matter of fact, I have had good experiences in reducing maintenance with changes in the DBMS.</p>
<p>About the only problem is when you change an underlying object. You may have to recompile the package. Easy to do with dynamic SQL and part of my daily cron job list.</p>
<p>As far as synonyms over dblinks. Make sure that the calling user has privileges on the underlying objects on both databases. Other than that, you shouldn&#8217;t be having problems using them across links if they are setup correctly.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 3/10 queries in 0.035 seconds using memcached
Object Caching 327/333 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-19 16:52:29 -->