File not found: /site/content.cfm
Orphaned Synonyms: Michael Barwell: Shows orphaned synonyms i.e. syns which point TO objects that no longer exist . ... (0.8 Kb)
it is gone....
Main Topics
Browse All TopicsHi,
I logged into a newly created APEX environment
and went to the Home>SQL Workshop>SQL Scripts
and got the following error:
Invalid exists/not exists condition: ORA-01775: looping chain of synonyms
I have not created any objects yet.
I looked up:
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 says: Change one synonym definition so that it applies to a
base table or view and retry the operation.
What is the SQL to find the synonyms causing the problem?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
not good :(
the query is anyhow based on ALL_SYNONYMS and ALL_OBJECTS finding out the synonyms for which the base object does not exist:
http://www.ss64.com/orad/A
http://www.ss64.com/orad/A
Business Accounts
Answer for Membership
by: angelIIIPosted on 2008-12-24 at 07:21:28ID: 23240372
this happens also when the synonym and the base object it pointed to had the same name, after which the base object is dropped, the synonym refers to itself.
au/site/in dex.cfm?di splay=1871 8
the only solution is to drop the synonym in question or recreate an object with that name.
how to find:
http://www.telligence.com.
Orphaned Synonyms: Michael Barwell: Shows orphaned synonyms i.e. syns which point TO objects that no longer exist . ... (0.8 Kb)