Home > Database > Mysql Tutorial > Oracle 11g远程导出数据库

Oracle 11g远程导出数据库

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-07 17:16:34
Original
1128 people have browsed it

Oracle 11g远程导出数据库,下面演示下使用数据泵的NETWORK_LINK将OEL6.0 ORACLE 11gR2数据库中STORAGE用户下的所有对象迁移到OEL

下面演示下使用数据泵的NETWORK_LINK将OEL6.0 Oracle 11gR2数据库中STORAGE用户下的所有对象迁移到OEL5.7 ORACLE 11gR2数据库中STORAGE用户下。

1.创建TNS字符串

FHACDB =
  (DESCRIPTION =
  (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.20.101)(PORT = 1523))
     )
  (CONNECT_DATA =
             (SERVICE_NAME = fhacdb)
      )
  )

2.创建DIRECTORY并授权

SQL> create directory imp as '/home/oracle'; Directory created.


SQL> grant read,write on directory imp to storage;

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@ 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 ... . .
导入了 "STORAGE"."T_DICTIONARY" 123371行 . .
导入了 "STORAGE"."CHN_WEST_DATE" 198702行 . .
导入了 "STORAGE"."T_FILE_INFO_RAW" 25176行 . .
导入了 "STORAGE"."T_FILE_INFO" 6657行 . .
导入了 "STORAGE"."T_LOG_INFO" 6476行 . .
导入了 "STORAGE"."T_BATCH_QUALITY" 4760行

linux

Related labels:
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template