Oracle 11g遠程導出數據庫 |
發布時間: 2012/9/5 16:51:15 |
下面演示下使用數據泵的NETWORK_LINK將OEL6.0 Oracle 11gR2數據庫中STORAGE用戶下的所有對象遷移到OEL5.7 ORACLE 11gR2數據庫中STORAGE用戶下。 1.創建TNS字符串 FHACDB = (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.20.101)(PORT = 1523)) 2.創建DIRECTORY并授權 SQL> create directory imp as '/home/Oracle'; Directory created.
Grant succeeded. 3.創建DB_LINK SQL> create public database link l_storage connect to storage identified by storage using 'fhacdb'; Database link created. 4.使用IMPDP的NETWORK_LINK進行遷移操作 [Oracle@www.linuxidc.com admin]$ impdp storage/storage directory=imp network_link=l_storage Import: Release 11.2.0.2.0 - Production on Wed Feb 15 11:02:18 2012 Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved. Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 With the Partitioning, OLAP, Data Mining and Real Application Testing options ... . . 本文出自:億恩科技【www.vbseamall.com】 |