up vote 5 down vote favorite
3
share [g+] share [fb]

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?

Is there a way to query the schema or whatever to find out what the current definition of a public synonym is?

Even more awesome would be a graphical tool, but at this point, anything would be helpful.

link|improve this question

feedback

6 Answers

up vote 6 down vote accepted

The data dictionary table DBA_SYNONYMS has information about all the synonyms in a database. So you can run the query

SELECT table_owner, table_name, db_link
  FROM dba_synonyms 
 WHERE owner        = 'PUBLIC'
   AND synonym_name = <<synonym name>>

to see what the public synonym currently points at.

link|improve this answer
AND synonym_name LIKE '%synonym name%' -- a bit more helpful. – Dave Jarvis Sep 2 '09 at 22:20
feedback

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.

Oracle apparently errors out as a looping chain in this condition.

link|improve this answer
that's odd - but good to see you found the issue – warren Oct 29 '08 at 17:37
Well, something more must have been going on. If I create a view, create a synonym for it, then drop the view, when I try to query the synonym I get: ORA-00980: synonym translation is no longer valid. – Dave Costa Oct 29 '08 at 20:51
1  
The tables that the view was pulling from are all tables with public synonyms as well. That may have had something to do with it. – Josh Kodroff May 20 '09 at 15:20
feedback

I had a similar problem, which turned out to be caused by missing double quotes off the table and schema name.

link|improve this answer
feedback

Today I got this error, and after debugging I figured out that the actual tables were misssing, which I was referring using synonyms. So I suggest - first check that whether the tables exists!! :-))

link|improve this answer
feedback

ORA-01775: looping chain of synonyms I faced the above error while I was trying to compile a Package which was using an object for which synonym was created however underlying object was not available.

link|improve this answer
feedback

http://ora-01775.ora-code.com/ suggests:

ORA-01775: looping chain of synonyms
Cause: Through a series of CREATE synonym statements, a synonym was defined that referred to itself. For example, the following definitions are circular:
CREATE SYNONYM s1 for s2 CREATE SYNONYM s2 for s3 CREATE SYNONYM s3 for s1
Action: Change one synonym definition so that it applies to a base table or view and retry the operation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.