`
tianshibaijia
  • 浏览: 1122922 次
文章分类
社区版块
存档分类
最新评论

exp/imp 与 expdp/impdp 对比 及使用中的一些优化事项

 
阅读更多

关于exp/imp和expdp/impdp,之前整理的2篇Blog如下:

ORACLE EXP/IMP 说明

http://blog.csdn.net/xujinyang/article/details/6830199

Oracle 10g Data Pump Expdp/Impdp 详解

http://blog.csdn.net/xujinyang/article/details/6830446

一. exp/imp与expdp/impdp对比

1.1expdp/impdp调用Server端的API在执行操作,是数据库内部的job任务。必须在服务器端执行。而exp/imp则没有限制。

1.2exp/imp与expdp/impdp的默认模式和原理不一样

1.2.1 exp/imp不同模式原理

在metalink的这边文章中,提到了exp/imp的不同模式下的工作原理:

Parameter DIRECT: Conventional Path Export Versus Direct Path Export [ID 155477.1]

http://blog.csdn.net/xujinyang/article/details/6883839

Starting with Oracle7 release 7.3, the Export utility provides two methods for exporting table data:

- Conventional Path Export

- Direct Path Export

(1)Conventional path Export.

Conventional path Export uses the SQL SELECT statement to extract data from tables. Data is read from disk into the buffer cache, and rows are transferred to the evaluating buffer. The data, after passing expression evaluation, is transferred to the Export client, which then writes the data into the export file.

exp/imp默认会是传统路径,这种模式下,是用SELECT加数据查询出来,然后写入buffer cache,在将这些记录写入evaluate buffer.最后传到Export客户端,在写入dump文件。

(2)Direct path Export.

When using a Direct path Export, the data is read from disk directly into the export session's program global area (PGA): the rows are transferred directly to the Export session's private buffer. This also means that the SQL command-processing layer (evaluation buffer) can be bypassed, because the data is already in the format that Export expects. As a result, unnecessary data conversion is avoided. The data is transferred to the Export client, which then writes the data into the export file.

The default is DIRECT=N, which extracts the table data using the conventional path.

This parameter is only applicable to the original export client.Export DataPump (expdp) uses a Direct Path unload by default and switches to External Table mode if required

直接路径模式下,数据直接从硬盘读取,然后写入PGA,格式就是export的格式,不需要转换,数据再直接传到export客户端,写入dump文件。这种模式没有经过evaluation buffer。少了一个过程,导出速度提高也是很明显。

1.2.2 expdp/impdp不同模式

Export/Import DataPump Parameter ACCESS_METHOD - How to Enforce a Method of Loading and Unloading Data ? [ID 552424.1]

http://blog.csdn.net/xujinyang/article/details/6883857

The two most commonly used methods to move data in and out of databases with Data Pump are the "Direct Path" method and the "External Tables" method.

(1)Direct Path mode.

After data file copying, direct path is the fastest method of moving data. In this method, the SQL layer of the database is bypassed and rows are moved to and from the dump file with only minimal interpretation.Data Pump automatically uses the direct path method for loading and unloading data when the structure of a table allows it.

expdp/impdp默认就是使用直接路径的,所以expdp要比exp块。

(2)External Tables mode.

If data cannot be moved in direct path mode, or if there is a situation where parallel SQL can be used to speed up the data move even more, then the external tables mode is used.The external table mechanism creates an external table that maps the dump file data for the database table.The SQL engine is then used to move the data. If possible, the APPEND hint is used on import to speed the copying of the data into the database.

Note: When the Export NETWORK_LINK parameter is used to specify a network link for an export operation, a variant of the external tables method is used. In this case, data is selected from across the specified network link and inserted into the dump file using an external table.

(3)Data File Copying mode.

This mode is used when a transport tablespace job is started, i.e.: the TRANSPORT_TABLESPACES parameter is specified for an Export Data Pump job. This is the fastest method of moving data because the data is not interpreted nor altered during the job, and Export Data Pump is used to unload only structural information (metadata) into the dump file.

(4)Network Link Import mode.

This mode is used when the NETWORK_LINK parameter is specified during an Import Data Pump job.This is the slowest of the four access methods because this method makes use of an INSERT SELECT statement to move the data over a database link, and reading over a network is generally slower than reading from a disk.

这种模式很方便,但是速度是最慢的,因为它是通过insert,select + dblink来实现的。速度慢也由此可见了。

示例:

create directory dump1 as '/oradata/dumpfiles';
grant read,write on dump1 to xxx;

创建DBLINK:

/* Formatted on 2010/12/23 11:28:22 (QP5 v5.115.810.9015) */

CREATEDATABASELINKTIANLESOFTWARE

CONNECTTOBUSINESS

IDENTIFIEDBY<PWD>

USING

'(DESCRIPTION =

(ADDRESS_LIST =

(ADDRESS = (PROTOCOL = TCP)(HOST = IP ADDRESS)(PORT = 1521))

)

(CONNECT_DATA =

(SID = ORCL)

(SERVER = DEDICATED)

)

)';

Dumpfile参数,可以用%U指定

expdp xxx/xxx schemas=xxx directory=dump1 dumpfile=xxx_%U.dmp filesize=5g

这样每个文件5G,xxx_01.dump,xxx_02.dump这样。

关于%U参考:

http://download.oracle.com/docs/cd/B19306_01/server.102/b14215/dp_overview.htm#sthref44

在下文也会讲到这点。

expdp xxx/xxx schemas=xxx directory=dump1 network_link =dbl_65 dumpfile=xxx_01.dump ,xxx_02.dump

这样也可以,但不确定xxx_01.dump增到多大才开始写xxx_02.dump文件。

ESTIMATE_ONLY=y可以估计文件大小。

NETWORK_LINK:这样就可以不必一定在本机expdp,也可以在目标机通过NETWORK_LINK把从文件抽到目标机上。

expdp xxx/xxx schemas=xxx directory=dump1 network_link =tianlesoftware dumpfile=xxx_%U.dump filesize=10m
或者用impdp + network_link实现无文件导入

需要注意,LOB字段可以使用NETWORK_LINK,而long类型字段会报错,

ORA-31679: Tabledataobject "xx"."SYS_USER" has long columns, and longs can not be loaded/unloaded using a network link

1.3网络和磁盘影响

expdp/impdp是服务端程序,影响它速度的只有磁盘IO。

exp/imp可以在服务端,也可以在客户端。所以,它受限于网络和磁盘。

1.4 exp/imp与expdp/impdp功能上的区别

(1)把用户usera的对象导到用户userb,用法区别在于fromuser=usera touser=userb ,remap_schema='usera':'userb'。例如

imp system/passwd fromuser=usera touser=userb file=/oracle/exp.dmp log=/oracle/exp.log;

impdp system/passwd directory=expdp dumpfile=expdp.dmp remap_schema='usera':'userb' logfile=/oracle/exp.log;

(2)更换表空间,用exp/imp的时候,要想更改表所在的表空间,需要手工去处理一下,如alter table xxx move tablespace_new之类的操作。用impdp只要用remap_tablespace='tabspace_old':'tablespace_new'

(3)当指定一些表的时候,使用exp/imp时,tables的用法是tables=('table1','table2','table3')。expdp/impdp用法是tables='table1','table2','table3'。

(4)是否要导出数据行

exp (ROWS=Y导出数据行,ROWS=N不导出数据行)

expdp content(ALL:对象+导出数据行,DATA_ONLY:只导出对象,METADATA_ONLY:只导出数据的记录)

二.使用中的优化事项

2.1exp

通过上面的分析,知道采用direct path可以提高导出速度。所以,在使用exp时,就可以采用直接路径模式。这种模式有2个相关的参数:DIRECT和RECORDLENGTH参数。

  DIRECT参数定义了导出是使用直接路径方式(DIRECT=Y),还是常规路径方式(DIRECT=N)。常规路径导出使用SQL SELECT语句从表中抽取数据,直接路径导出则是将数据直接从磁盘读到PGA再原样写入导出文件,从而避免了SQL命令处理层的数据转换过程,大大提高了导出效率。在数据量大的情况下,直接路径导出的效率优势更为明显,可比常规方法速度提高三倍之多。

  和DIRECT=Y配合使用的是RECORDLENGTH参数,它定义了Export I/O缓冲的大小,作用类似于常规路径导出使用的BUFFER参数。建议设置RECORDLENGTH参数为最大I/O缓冲,即65535(64kb)。其用法如下:

如:exp userid=system/manager full=y direct=y recordlength=65535 file=exp_full.dmp log=exp_full.log

一些限制如下:

You cannot use the DIRECT=Y parameter when exporting in tablespace-mode(i.e. when specifying the parameter TRANSPORT_TABLESPACES=Y).You can use the DIRECT=Y parameter when exporting in full, user or table mode (i.e.: when specifying FULL=Y or OWNER=scott or TABLES=scott.emp).

--直接路径不能使用在tablespace-mode

The parameter QUERY applies ONLY to conventional path Export. It cannot be specified in a direct path export (DIRECT=Y).

--直接路径不支持query参数。query只能在conventional path模式下使用。

In versions of Export prior to 8.1.5, you could not use direct path Export for tables containing objects and LOBs.

-如果exp版本小于8.1.5,不能使用exp导入有lob字段的biao。不过现在很少有有8版本的数据库了。这点可以忽略掉了。

The BUFFER parameter applies ONLY to conventional path Export. It has no effect on a direct path Export.This BUFFER parameter specifies the size (in bytes) of the buffer used to fetch rows. It determines the maximum number of rows in an array, fetched by Export.For direct path Export, use the RECORDLENGTH parameter to specify the size of the buffer that Export uses for writing to the export file.

-- buffer选项只对conventional path exp有效。对于直接路径没有影响。对于直接路径,应该设置RECORDLENGTH参数。

The RECORDLENGTH parameter specifies the length (in bytes) of the file record.You can use this parameter to specify the size of the Export I/O buffer (highest value is 64 kb). Changing the RECORDLENGTH parameter affects only the size of data that accumulates before writing to disk.It does not affect the operating system file block size.If you do not define this parameter, it defaults to your platform-dependent value for BUFSIZ (1024 bytes in most cases).

invoking a Direct path Export with a maximum I/O buffer of 64kb can improve the performance of the Export with almost 50%.This can be achieved by specifying the additional Export parameters DIRECT and RECORDLENGTH

--对于直接路径下,RECORDLENGTH参数建议设成64k(65535)。这个值对性能提高比较大。如:

> expsystem/managerFILE=exp_full.dmpLOG=exp_full.log

FULL=yDIRECT=yRECORDLENGTH=65535

> impsystem/managerFILE=exp_full.dmpLOG=imp_full.log

FULL=yRECORDLENGTH=65535

2.2IMP

  Oracle Import进程需要花比Export进程数倍的时间将数据导入数据库。某些关键时刻,导入是为了应对数据库的紧急故障恢复。为了减少宕机时间,加快导入速度显得至关重要。没有特效办法加速一个大数据量的导入,但我们可以做一些适当的设定以减少整个导入时间。

(1)避免I/O竞争

Import是一个I/O密集的操作,避免I/O竞争可以加快导入速度。如果可能,不要在系统高峰的时间导入数据,不要在导入数据时运行job等可能竞争系统资源的操作。

(2)增加排序区

  Oracle Import进程先导入数据再创建索引,不论INDEXES值设为YES或者NO,主键的索引是一定会创建的。创建索引的时候需要用到排序区,在内存大小不足的时候,使用临时表空间进行磁盘排序,由于磁盘排序效率和内存排序效率相差好几个数量级。增加排序区可以大大提高创建索引的效率,从而加快导入速度。

(3)调整BUFFER选项

  Imp参数BUFFER定义了每一次读取导出文件的数据量,设的越大,就越减少Import进程读取数据的次数,从而提高导入效率。BUFFER的大小取决于系统应用、数据库规模,通常来说,设为百兆就足够了。其用法如下:

imp user/pwd fromuser=user1 touser=user2 file=/tmp/imp_db_pipe1 commit=y feedback=10000 buffer=10240000

(4)使用COMMIT=Y选项

  COMMIT=Y表示每个数据缓冲满了之后提交一次,而不是导完一张表提交一次。这样会大大减少对系统回滚段等资源的消耗,对顺利完成导入是有益的。

(5)使用INDEXES=N选项

  前面谈到增加排序区时,说明Imp进程会先导入数据再创建索引。导入过程中建立用户定义的索引,特别是表上有多个索引或者数据表特别庞大时,需要耗费大量时间。某些情况下,需要以最快的时间导入数据,而索引允许后建,我们就可以使用INDEXES=N只导入数据不创建索引,从而加快导入速度。

  我们可以用INDEXFILE选项生成创建索引的DLL脚本,再手工创建索引。我们也可以用如下的方法导入两次,第一次导入数据,第二次导入索引。其用法如下:

imp user/pwd fromuser=user1 touser=user2 file=/tmp/imp_db_pipe1 commit=y feedback=10000 buffer=10240000 ignore=yrows=y indexes=n

imp user/pwd fromuser=user1 touser=user2 file=/tmp/imp_index_pipe1 commit=y feedback=10000 buffer=10240000 ignore=yrows=n indexes=y

(6)增加LARGE_POOL_SIZE

  如果在init.ora中配置了MTS_SERVICE,MTS_DISPATCHERS等参数,tnsnames.ora中又没有(SERVER=DEDICATED)的配置,那么数据库就使用了共享服务器模式。在MTS模式下,Exp/Imp操作会用到LARGE_POOL,建议调整LARGE_POOL_SIZE到150M。

检查数据库是否在MTS模式下:

  SQL>select distinct server from v$session;

如果返回值出现none或shared,说明启用了MTS。

2.3 Expdp/Impdp

据泵与exp/imp来说性能有很大的提高,其中影响最大的就是paralle。可以这么来看:expdp/impdp=exp/imp+direct moe + paralle.所以,使用数据泵,要想提高速度,就要设置并行参数。

先看2个参数:

Setting Parallelism

For export and import operations,the parallelism setting (specified with the PARALLEL parameter) should be less than or equal to the number of dump files in the dump file set.If there are not enough dump files, the performance will not be optimal because multiple threads of execution will be trying to access the same dump file.

The PARALLEL parameter is valid only in the Enterprise Edition of Oracle Database 10g.

Using Substitution Variables

Instead of, or in addition to, listing specific filenames, you can use the DUMPFILE parameter during export operations to specify multiple dump files, by using a substitution variable (%U) in the filename. This is called a dump file template.The new dump files are created as they are needed, beginning with 01 for %U, then using 02, 03, and so on. Enough dump files are created to allow all processes specified by the current setting of the PARALLEL parameter to be active. If one of the dump files becomes full because its size has reached the maximum size specified by the FILESIZE parameter, it is closed, and a new dump file (with a new generated name) is created to take its place.

From:

http://download.oracle.com/docs/cd/B19306_01/server.102/b14215/dp_overview.htm#sthref44

如果我们使用如下语句:

expdp full=y directory=dump dumpfile=orcl_%U.dmp parallel=4

那么expdp将为parallel创建4个文件:ORCL_01.DMP,RCL_02.DMP

,ORCL_03.DMP,RCL_04.DMP。每个进程一个文件。这样的话,每个文件的大小会因进程而不同。可以某个文件很大,某个文件却很小。要解决这个问题,就是设置filesize参数。来指定每个文件的最大值。这样当一个文件达到最大值的之后,就会创建一个新的文件。

如:

expdp full=y directory=dump dumpfile=orcl_%U.dmp parallel=4 filesize=50M

导出的dump文件和paralle有关系,那么导入也有关系。paralle要小于dump文件数。如果paralle大于dump文件的个数,就会因为超过的那个进程获取不到文件,就不能对性能提高。

一般parall参数值等于CPU的个数。而且要小于dump文件的个数。

查看CPU个数:

SQL> show parameter cpu

注意事项:

(1)导入的时候可能会停在某个地方,比如在创建索引的时候,可能在一个地方停了十几分钟。这个时候切记不要中断过程。这个时候可能是需要导入的数据比较多。

可以在不同时段观察下表空间大小的变化。如果表空间一直在变化,说明还在导入,这个时候耐心等待就好。

查看表空间可以用如下SQL:

/* Formatted on 2010/12/23 13:14:13 (QP5 v5.115.810.9015) */

SELECTa.tablespace_name,

ROUND(a.total_size)"total_size(MB)",

ROUND(a.total_size)-ROUND(b.free_size,3)"used_size(MB)",

ROUND(b.free_size,3)"free_size(MB)",

ROUND(b.free_size/total_size *100,2)||'%'free_rate

FROM(SELECTtablespace_name,SUM(bytes)/1024/1024total_size

FROMdba_data_files

GROUPBYtablespace_name)a,

(SELECTtablespace_name,SUM(bytes)/1024/1024free_size

FROMdba_free_space

GROUPBYtablespace_name)b

WHEREa.tablespace_name=b.tablespace_name(+);

(2)导出导入的过程,尽量避免用ssh连上服务器,在客户端的ssh里执行备份恢复命令。因为这样,如果连接中断,备份也就中断了。可以将备份脚本添加到crontab里。让备份在服务器上执行。这样即使ssh中断,备份和恢复也不受影响。

------------------------------------------------------------------------------

分享到:
评论

相关推荐

    exp,imp 与 expdp,impdp 对比 及使用中的一些优化事项.doc

    oracle exp,imp 与 expdp,impdp 对比 及使用中的一些优化事项

    Oracle数据导入导出imp/exp命令 10g以上expdp/impdp命令

    Oracle数据导入导出imp/exp命令 10g以上expdp/impdp命令

    ORACLE数据泵impdp与expdp

    在10g之前,传统的导出和导入分别使用EXP工具和IMP工具,从10g开始,不仅保留了原有的EXP和IMP工具,还提供了数据泵导出导入工具EXPDP和IMPDP.使用EXPDP和IMPDP时应该注意的事项; EXP和IMP是客户段工具程序,它们既可以在...

    ORACLE EXPDPIMPDP 参数详解

    oralce详细导入导出参数解释,详细解释了与imp,exp的区别

    impdp / expdp or imp/exp

    Oracle 数据库备份 Oracle数据库备份 命令 的参数解释

    第8课 数据备份恢复及数据迁移.pdf

    理备份 – 冷备份 – 热备份 � 逻辑备份 – exp/imp – expdp/impdp racle的恢复 � 实例恢复 � 介质恢

    Linux:Oracle导出导入数据泵(EXPDP,IMPDP)

    数据泵技术是Oracle Database 10g 中的新技术,它比原来导入/导出(imp,exp)技术快15-45倍。速度的提高源于使用了并行技术来读写导出转储文件。 expdp/impdp和exp/imp的区别 exp和imp是客户端工具程序,它们既可以在...

    oracle数据迁移.docx

    文档是关于oracle 数据迁移方面的 ,说明了 传统迁移工具 exp/imp 与 数据泵 expdp/impdp 的 区别 ,以及 数据泵 重要参数解释 。并举例说明了 数据泵的 迁移实例 。

    Oracle 数据泵详解

    在10g之前,传统的导出和导入分别使用EXP工具和IMP工具,从10g开始,不仅保留了原有的EXP和IMP工具,还提供了数据泵导出导入工具EXPDP和IMPDP.使用EXPDP和IMPDP时应该注意的事项: 1)EXP和IMP是客户端工具程序,它们既...

    Oracle12C备份恢复培训整体内容.docx

    逻辑备份--exp/imp、expdp/impdp 物理备份--rman 2.具体介绍: 2.1 逻辑备份: 2.1.1 Oracle逻辑备份的概念: 逻辑备份就是创建数据库对象的逻辑拷贝并存入一个二进制转储文件:.dmp文件 这些记录的导出与其物理...

    Centos7.6下oracle impdp导入和expdp导出.docx

    Centos7.6下oracle impdp导入和expdp导出,

    oracle备份与恢复

    将数据库中的用户对象导出到一个二进制文件中,逻辑备份使用导入导出工具:EXPDP/IMPDP或EXP/IMP,由于将数据库对象导出到操作系统二进制文件中,或由二进制文件中把数据导入到数据库中。逻辑备份可以作为备份的补充...

    expdp+impdp_用法详解.pdf

    oracle数据库导入导出用法详解,内容比较详细

    Oracle11g客户端安装包.zip

    Windows环境使用exp,imp,expdp,impdp,sqldur2等导入导出数据命令的时候,需要安装Oracle11g客户端环境

    oracle数据拓操作

    EXPDP和IMPDP一些注意事项; 1:EXP和IMP是客户段工具程序,它们既可以在可以客户端使用,也可以在服务端使用. 2:EXPDP和IMPDP是服务端的工具程序,他们只能在ORACLE服务端使用,不能在客户端使用 3:IMP只能使用EXP导出...

    Oracel移行方法のまとめ

    exp/impで移行 expdp/impdp で移行 RMANで移行 CREATE TABLE AS SELECT(DB LINK)で移行 INSERT SELECT (DB LINK)で移行 SQLPLUS COPY コマンド CSV+SQLLDR Transportable 表領域で移行 STREAMで移行

    oracle 导入导出命令详解

    oracle数据库导入导出命令imp exp impdp expdp的使用详解,很有用!

    Oracle数据导出导入简介

    介绍了oracle数据库中使用exp,expdp,imp,impdp导出导入数据主方法,适合刚接触oracle数据的同学了解下。共同学习。

    Oracle数据库导入导出详细操作

    oracle 数据库expdp 和impdp 详细操作说明 针对imp、exp 做简要说明

Global site tag (gtag.js) - Google Analytics