How to debug ORA-01775: looping chain of synonyms? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T01:57:29Zhttp://stackoverflow.com/feeds/question/247090http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/247090/how-to-debug-ora-01775-looping-chain-of-synonyms2How to debug ORA-01775: looping chain of synonyms?Josh Kodroff2008-10-29T14:50:03Z2008-10-29T17:09:35Z
<p>I'm familiar with the issue behind ORA-01775: looping chain of synonyms, but is there any trick to debugging it, or do I just have to "create or replace" my way out of it? </p>
<p>Is there a way to query the schema or whatever to find out what the current definition of a public synonym is? </p>
<p>Even more awesome would be a graphical tool, but at this point, anything would be helpful.</p>
http://stackoverflow.com/questions/247090/how-to-debug-ora-01775-looping-chain-of-synonyms/247180#2471803Answer by Justin Cave for How to debug ORA-01775: looping chain of synonyms?Justin Cave2008-10-29T15:11:30Z2008-10-29T15:11:30Z<p>The data dictionary table <code>DBA_SYNONYMS</code> has information about all the synonyms in a database. So you can run the query</p>
<pre><code>SELECT table_owner, table_name, db_link
FROM dba_synonyms
WHERE owner = 'PUBLIC'
AND synonym_name = <<synonym name>>
</code></pre>
<p>to see what the public synonym currently points at.</p>
http://stackoverflow.com/questions/247090/how-to-debug-ora-01775-looping-chain-of-synonyms/247191#2471910Answer by warren for How to debug ORA-01775: looping chain of synonyms?warren2008-10-29T15:12:51Z2008-10-29T15:12:51Z<p><a href="http://ora-01775.ora-code.com/" rel="nofollow">http://ora-01775.ora-code.com/</a> suggests:</p>
<p><strong>ORA-01775</strong>: looping chain of synonyms<br />
<em>Cause</em>: Through a series of CREATE synonym statements, a synonym was defined that referred to itself. For example, the following definitions are circular:<br />
<code>CREATE SYNONYM s1 for s2 CREATE SYNONYM s2 for s3 CREATE SYNONYM s3 for s1</code><br />
<em>Action</em>: Change one synonym definition so that it applies to a base table or view and retry the operation.</p>
http://stackoverflow.com/questions/247090/how-to-debug-ora-01775-looping-chain-of-synonyms/247620#2476201Answer by Josh Kodroff for How to debug ORA-01775: looping chain of synonyms?Josh Kodroff2008-10-29T17:09:35Z2008-10-29T17:09:35Z<p>As it turns out, the problem wasn't actually a looping chain of synonyms, but the fact that the synonym was pointing to a view that did not exist.</p>
<p>Oracle apparently errors out as a looping chain in this condition.</p>