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가 같아야 한다는 것 같네요 ~