RT.
以下是我的解决过程,但是会有问题:SQL> conn scott/tiger@ora10g;
已连接。
SQL> DROP DATABASE LINK SCOTT_LINK;数据库链接已删除。SQL> create database link scott_link
  2  connect to scott identified by tiger
  3  using '(DESCRIPTION =
  4  (ADDRESS_LIST =
  5  (ADDRESS =(PROTOCOL=TCP)(HOST=192.168.224.128)(PORT=1521))
  6  )
  7  (CONNECT_DATA=
  8  (SID=ORA10G)
  9  (SERVER=ORA10G)
 10  )';数据库链接已创建。SQL> conn system/oracle@ora10g
已连接。
SQL> create directory expdp_dir as 'E:\exp_dir';--目录'E:\exp_dir'已经存在目录已创建。SQL> conn system/oracle@ora10g
已连接。
SQL> create directory expdp_dir as 'E:\exp_dir';目录已创建。SQL> exit;
从 Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options 断
开C:\>expdp scott/tiger@ora10g directory=expdp_file dumpfile=exp00.dmp network_link=scott_link但是会出现以下错误提示:
连接到: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
ORA-39001: invalid argument value
ORA-39200: Link name "scott_link" is invalid.
ORA-12154: TNS:could not resolve the connect identifier specified请问大牛们,这个问题应该如何解决??