How to debug ORA-01775: looping chain of synonyms? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T01:57:29Z http://stackoverflow.com/feeds/question/247090 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/247090/how-to-debug-ora-01775-looping-chain-of-synonyms 2 How to debug ORA-01775: looping chain of synonyms? Josh Kodroff 2008-10-29T14:50:03Z 2008-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#247180 3 Answer by Justin Cave for How to debug ORA-01775: looping chain of synonyms? Justin Cave 2008-10-29T15:11:30Z 2008-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 = &lt;&lt;synonym name&gt;&gt; </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#247191 0 Answer by warren for How to debug ORA-01775: looping chain of synonyms? warren 2008-10-29T15:12:51Z 2008-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#247620 1 Answer by Josh Kodroff for How to debug ORA-01775: looping chain of synonyms? Josh Kodroff 2008-10-29T17:09:35Z 2008-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>