I have the following schema defined as mentioned here While executing the query
SELECT stn.id
FROM station stn
JOIN station_location_mpng stnloc
ON stn.oid = stnloc.station_oid
WHERE stnloc.location_oid = ?;
Am getting the following exception
ORA-01775: looping chain of synonyms
01775. 00000 - "looping chain of synonyms"
This is occurring in one of my DB instance. Am a java developer not DBA could anyone point out why am getting exception as above.