我有两个数据库,CitadelStation和SQL_Course。
SQL_Course数据库中有一个名为TEST
的表,位于用户“ course”下,其密码为“ course”。
当我尝试从CitadelStation创建指向该表的数据库链接时,遇到了麻烦。我用来创建此数据库链接的命令是:
create database link remote_connection
connect to course identified by course
using 'SQL_Course';
链接已成功创建,但是当我尝试查询TEST
表时,出现以下错误:
select * from test@remote_connection;
select * from test@remote_connection
*
ERROR at line 1:
ORA-12154: TNS:could not resolve the connect identifier specified
我该怎么做才能解决此问题?