Oracle出现ORA-01775: 同义词的循环链问题
1、 当用程序连接或者用plsql查询同义词时,如果出现ora-01775:同义词的循环链这样的问题。一般是因为存在同义词,但同义词没有相应的对象。2、 先查有没有循环的同义词。select*fromdba_synonymswheretable_owner="TEST"and synonym_name<>table_name;没有记录。3、 再查同义词没有对象的数据库对象select*fromdba_synonymswheretable_own...