SELECT db_link, username, password, host, created
FROM user_db_links
전체 글
DBLink보기
ORA-02069
Oracle/PLSQL: ORA-02069 Error
Error:
ORA-02069: global_names parameter must be set to TRUE for this operation
Cause:
You tried to execute an operation that requires a remote mapping. This can not be done because the parameter called GLOBAL_NAMES is not set to TRUE.
Action:
The options to resolve this Oracle error are:
Try setting the GLOBAL_NAMES parameter to TRUE with the following statement:
ALTER SESSION SET GLOBAL_NAMES = TRUE;
http://www.techonthenet.com/oracle/errors/ora02069.php
여기 한번 참고해보셔도 되구요.. 위 방법은
instance 레벨에서의 처리입니다. 오라클을 다시 마운트하시면, 설정이 없어집니다.
영구적인 설정이라면 initSID.ora 파일의 parameter중
Golbal_names 라는 파라메터의 값이 true로 되어 있어야 합니다. 그래야 오라클을 재구동하여도 계속 적용되어 있습니다.
내용은 좀 더 찾아보니..
db_link master site와 slave site의 DB name Alias가 같아야 한다는 것 같네요 ~
ORA-02085
ORA-02085: 데이터베이스 링크 EKP가 EKP.US.ORACLE.COM에 연결됩니다
해결: 결론은, global_names = true여서 생긴 문제였습니다.
alter session set global_names = False로 변경후, 에러 없이 연결이 잘 되었고, ini parameter에 명시적으로 넣어서 해결하였습니다.
참고 출처: http://forums.oracle.com/forums/thread.jspa?threadID=420795&tstart=740