Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: ??? strange database link problem
Andrea,
When GLOBAL_NAMES=TRUE then the name of the db link must match the global name of the db to which it connects. You can check the global_name with SELECT * FROM GLOBAL_NAME; In your case the global_name of the remote db is AU34TD.WORLD so you will get this error unless you name the db link AU34TD.WORLD.
You can set GLOBAL_NAMES=FALSE, as long as you are not using something, such as replication, which requires this to be true.
You can alter the global name of a db using
ALTER DATABASE RENAME GLOBAL_NAME TO
<newname.domain>;
WARNING: Never alter the global name of a db that is already part of an advanced replication environment or you will break the replication environment.
HTH,
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: A. Bardeen INET: abardeen1_at_yahoo.com Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Wed May 16 2001 - 23:40:18 CDT