码迷,mamicode.com
首页 > 数据库 > 详细

使用DBLINK导数据【ORA-39001 ORA-39200 ORA-02019】

时间:2014-06-16 08:07:46      阅读:2196      评论:0      收藏:0      [点我收藏+]

标签:des   使用   数据   art   cti   name   

在网上经常看到网友使用dblink导数据报错,报错大致如下:

$ impdp system/system network_link=DB_LINK remap_schema=A:B schemas=A

Import: Release 11.2.0.3.0 - Production on Tue Aug 14 14:07:52 2012
Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.
Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
Data Mining and Real Application Testing options
ORA-39001: invalid argument value
ORA-39200: Link name "DB_LINK" is invalid.
ORA-02019: connection description for remote database not found

解决办法:

只需要创建public database link就ok了,dblink用完后要尽快删掉,否则可能有安全隐患。

核心步骤:

一、创建dblink

create public database link DB_LINK connect to system identified by oracle using ‘network‘;

二、impdp

impdp system/oracle network_link=network remap_schema=A:B schemas=A

使用DBLINK导数据【ORA-39001 ORA-39200 ORA-02019】,布布扣,bubuko.com

使用DBLINK导数据【ORA-39001 ORA-39200 ORA-02019】

标签:des   使用   数据   art   cti   name   

原文地址:http://www.cnblogs.com/weixun/p/3783766.html

(1)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!