I have created a db link AM_ADMIN
throufh SQL Developer:
I am trying to check if it is a valid database link. When I test it from the SQL Developer wizard it is successfull. But when I use the below command:
SELECT * FROM dual@AM_ADMIN
I'm getting the error:
ORA-02019: connection description for remote database not found
How can I rectify this error?
According to your screenshot you created the database link as AM_ADMIN.INT.xxx
. You are calling it without the domain, just as @AM_ADMIN
. Unless you have a sqlnet.ora
which defines names.default_domain
with the same domain value (and have SQL Developer configured to recognise that), you will need to fully-quality the link name when you use it:
SELECT * FROM dual@AM_ADMIN.INT.xxx