文档解释
ORA-27364: remote database string already registered as string
Cause: The user attempted to register a remote database that was already registered.
Action: To update the registration information, the REPLACE argument of the REGISTER_REMOTE_DATABASE procedure should be set to TRUE. If the registration information is already current, no further action is needed.
ORA-27364 错误是一个错误通知,指出您所尝试注册的远程数据库字符串已经被注册。
官方解释
ORA-27364 被发出,当你尝试注册一个远程数据库字符串, 但此字符串已经存在时。
常见案例
该情况可能是由于同一远程数据库字符串(如“sales_db@mynet”)已经被注册,然后用户又尝试次注册它,而引起的。
一般处理方法及步骤
1.检查您尝试使用的数据库字符串是否已经被注册。
2.如果字符串已经注册,就不需要重复注册,而只需删除重复的注册即可。
3.使用 DROP DATABASE LINK 命令删除重复的注册:DROP DATABASE LINK ;