ORA-12154:TNS:无法解析指定的连接标识符-连接到远程数据库

时间:2018-08-08 23:28:16

标签: sql oracle oracle12c

我有两个数据库,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

我该怎么做才能解决此问题?

0 个答案:

没有答案