Oracle使用EXPDP和IMPDP数据泵进行导出导入方法

一、expdp/impdp和exp/imp的区别

1、exp和imp是客户端工具程序,它们既可以在客户端使用,也可以在服务端使用。

2、expdp和impdp是服务端的工具程序,他们只能在Oracle服务端使用,不能在客户端使用。

3、imp只适用于exp导出的文件,不适用于expdp导出文件;impdp只适用于expdp导出的文件,而不适用于exp导出文件。

4、对于10g以上的服务器,使用exp通常不能导出0行数据的空表,而此时必须使用expdp导出。

二、expdp导出步骤

(1)创建逻辑目录:

   第一步:在服务器上创建真实的目录;(注意:第三步创建逻辑目录的命令不会在OS上创建真正的目录,所以要先在服务器上创建真实的目录。如下图:)

 

Oracle使用EXPDP和IMPDP数据泵进行导出导入方法

   第二步:用sys管理员登录sqlplus;

oracle@ypdbtest:/home/oracle/dmp/vechcore>sqlplus SQL*Plus: Release 11.2.0.4.0 Production on Tue Sep 5 09:20:49 2017 Copyright (c) 1982, 2013, Oracle. All rights reserved. Enter user-name: sys as sysdba Enter password: Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production With the Partitioning, OLAP, Data Mining and Real Application Testing options SQL>

   第三步:创建逻辑目录;

SQL> create directory data_dir as '/home/oracle/dmp/user'; Directory created.

   第四步:查看管理员目录,检查是否存在;

SQL> select * from dba_directories; OWNER DIRECTORY_NAME ------------------------------ ------------------------------ DIRECTORY_PATH -------------------------------------------------------------------------------- SYS DATA_DIR /home/oracle/dmp/user

    第五步:用sys管理员给你的指定用户赋予在该目录的操作权限。

SQL> grant read,write on directory data_dir to user; Grant succeeded.

(2)用expdp导出dmp,有五种导出方式:

    第一种:“full=y”,全量导出数据库;

expdp user/passwd@orcl dumpfile=expdp.dmp directory=data_dir full=y logfile=expdp.log;

    第二种:schemas按用户导出;

expdp user/passwd@orcl schemas=user dumpfile=expdp.dmp directory=data_dir logfile=expdp.log;

    第三种:按表空间导出;

expdp sys/passwd@orcl tablespace=tbs1,tbs2 dumpfile=expdp.dmp directory=data_dir logfile=expdp.log;

    第四种:导出表;

expdp user/passwd@orcl tables=table1,table2 dumpfile=expdp.dmp directory=data_dir logfile=expdp.log;

    第五种:按查询条件导;

expdp user/passwd@orcl tables=table1='where number=1234' dumpfile=expdp.dmp directory=data_dir logfile=expdp.log;


三、impdp导入步骤

(1)如果不是同一台服务器,需要先将上面的dmp文件下载到目标服务器上,具体命令参照:

(2)参照“expdp导出步骤”里的前三步,建立逻辑目录;

(3)用impdp命令导入,对应五种方式:

    第一种:“full=y”,全量导入数据库;

impdp user/passwd directory=data_dir dumpfile=expdp.dmp full=y;

    第二种:同名用户导入,从用户A导入到用户A;

impdp A/passwd schemas=A directory=data_dir dumpfile=expdp.dmp logfile=impdp.log;

    第三种:①从A用户中把表table1和table2导入到B用户中;

impdp B/passwdtables=A.table1,A.table2 remap_schema=A:B directory=data_dir dumpfile=expdp.dmp logfile=impdp.log;

        ②将表空间TBS01、TBS02、TBS03导入到表空间A_TBS,将用户B的数据导入到A,并生成新的oid防止冲突;

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/2fb2aa5cf9ad3c9f1b864b869b0e6abb.html