oracle建索引后导致数据丢失,[转载]impdp之后数据表主键、索引、注释信息丢失的解决方法及expdp/imp...

--数据泵 EXPDP 导出工具的使用

--=================================

对于Oracle

数据库之间的导入导出,可以使用Oracle提供的导入导出工具EXP/IMP来实现。EXP/IMP是Oracle早期提供的数据导入导出工具。在Oracle

10g 中,提供了高速导入导出数据泵IMPDP,EXPDP,本文主要讲述EXPDP的用法。

关于IMPDP的用法,请参照:数据泵IMPDP

导入工具的使用

一、数据泵的体系结构

数据泵是一个基于服务器端的高速导入导出工具,通过dbms_datapump包来调用

提供expdp,impdp,以及基于Web页面来实现导入导出

提供两种数据数据方式方式:直接路径、外部表

可以定制数据泵作业,以及从作业中分离和重新附加到作业

服务器端的数据泵是直接访问数据文件与SGA,不必通过会话进行访问

数据泵进程

对Unix系统而言,数据泵进程为expdp,impdp

对Windows系统而言,数据泵进程为expdp.exe,impdp.exe

启动一个DataPump作业,至少会启动下列两个进程,一个Data Pump

Master(DMnn),一个或多个工作进程(DWnn),主进程控制工作进程

如果多个DataPump作业同时运行,那么每个作业都具有自己的DMnn进程以及自己的DWnn进程

如果设置了并行技术,则每个DWnn进程可以使用两个或多个并行执行服务器(名称为Pnnn)

DataPump生成下列三种形式的文件

SQL文件:描述指定作业所包含对象的若干DDL语句

转储文件:即包含数据和元数据的文件

日志文件:用于记录导出时的相关信息

目录

用于设置导入导出文件所在或存放的位置 create directory dump_scott

as /home/oracle/dump/scott';

可以通过dba_directories来查看系统中已创建的目录 select * from

dba_directories;

对于创建的目录必须授予用户读写目录的权限  grant read,write on directory dump_scott to

scott;

二、数据泵的优点

在Oracel 10g

中提供的数据泵,较之i时代的导入导出工具(imp,exp),除了能实现imp/exp的功能之外,提供了更好的性能,

下面是数据泵的优点

为数据及数据对象提供更细微级别的选择性(使用exclude,include,content参数)

可以设定数据库版本号(主要是用于兼容老版本的数据库系统)

并行执行

预估导出作业所需要的磁盘空间(使用estimate_only参数)

支持分布式环境中通过数据库链接实现导入导出

支持导入时重新映射功能(即将对象导入到新的目标数据文件,架构,表空间等)

支持元数据压缩及数据采样

三、数据泵程序接口及模式

数据泵导入导出接口如下

命令行接口

参数文件

交互式命令行接口

数据库控制台

数据泵导入导出模式

整个数据库

架构

表空间

传输表空间

四、导出工具expdp

1. 它是操作系统下一个可执行的文件存放目录/ORACLE_HOME/bin

[oracle@oradb bin]$ ls

-lh expdp

-rwxr-x--x 1 oracle

oinstall 174K Sep 13 20:01 expdp

expdp导出工具将数据库中数据备份压缩成一个二进制系统文件.可以在不同OS间迁移

expdb支持三种模式:

a. 表模式:  导出用户所有表或者指定的表

b. 用户模式:导出用户所有对象以及对象中的数据

c. 导出表空间:导出数据库中特定的表空间

d. 整个数据库:  导出数据库中所有对象

使用expdp-?

可以查看expdp命令的用法并启动交互进程,也可使用expdp -help来查看更详细的帮助信息

[oracle@oradb bin]$ expdp -?

abort_step  Undocumented feature

access_method  Data Access Method - default is Automatic

attach  Attach to

existing job - no default)''

compression  Content to export: default is

METADATA_ONLY

content  Content to export: default is

ALL

directory  Default directory

specification

dumpfile  dumpfile

names: format is (file1,...) default is expdat.dmp

encryption_password  Encryption key to be

used

estimate  Calculate

size estimate: default is BLOCKS

estimate_only  Only estimate the length of the job: default is

N

exclude  Export exclude option: no

default

filesize  file size:

the size of export dump files

flashback_time  database time to be used for flashback export: no

default

flashback_scn  system change number to be used for flashback

export: no default

full  indicates a full mode export

include  export include option: no

default

ip_address  IP Address for PLSQL

debugger

help  help: display description on export parameters,

default is N

job_name  Job Name:

no default)''

keep_master  keep_master: Retain job table

upon completion

log_entry  logentry

logfile  log export messages to

specified file

metrics  Enable/disable object metrics

reporting

mp_enable  Enable/disable

multi-processing for current session

network_link  Network mode export

nologfile  No export log file

created

package_load  Specify how to load PL/SQL

objects

parallel  Degree of

Parallelism: default is 1

parallel_threshold  Degree of

DML Parallelism

parfile  parameter file: name of file

that contains parameter specifications

query  query used

to select a subset of rows for a table

sample  Specify

percentage of data to be sampled

schemas  schemas to export: format is

'(schema1, .., schemaN)'

silent  silent:

display information, default is NONE

status  Interval

between status updates

tables  Tables to

export: format is '(table1, table2, ..., tableN)'

tablespaces  tablespaces to

transport/recover: format is '(ts1,..., tsN)'

trace  Trace

option: enable sql_trace and timed_stat, default is 0

transport_full_check  TTS perform test for objects

in recovery set: default is N

transport_tablespaces  Transportable tablespace option: default is

N

tts_closure_check  Enable/disable transportable containment check: def is Y

userid  user/password to connect to oracle: no

default

version  Job version: Compatible is

the default

Export: Release 10.2.0.1.0 - Production on

Monday, 20 September, 2010 14:22:56

Copyright (c) 2003, 2005, Oracle.

All rights reserved.

Username:

2. 导出工具expdp非交互式命令行方式的例子

a.基于表模式的导出

SQL>

create directory dump_scott as '/home/oracle/dump/scott';

Directory created.

SQL>

select * from dba_directories;

OWNER  DIRECTORY_NAME  DIRECTORY_PATH

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

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

SYS  DUMP_SCOTT  /home/oracle/dump/scott

SQL>

grant read,write on directory dump_scott to scott;

Grant succeeded.

SQL>

!

[oracle@oradb /]$ mkdir

/home/oracle/dump

[oracle@oradb /]$ mkdir

/home/oracle/dump/scott

[oracle@oradb ~]$ expdp

scott/tiger directory=dump_scott dumpfile=dumptab.dmp /

>

logfile=scott.log tables=dept,emp

Export: Release

10.2.0.1.0 - Production on Monday, 20 September, 2010

14:55:23

Copyright (c) 2003,

2005, Oracle.  All rights reserved.

Connected to: Oracle

Database 10g Enterprise Edition Release 10.2.0.1.0 -

Production

With the Partitioning,

OLAP and Data Mining options

Starting

"SCOTT"."SYS_EXPORT_TABLE_01":  scott

directory=dump_scott dumpfile=dumptab.dmp logfile=scott.log

tables=dept,emp

Estimate in progress

using BLOCKS method...

Processing object type

TABLE_EXPORT/TABLE/TABLE_DATA

Total estimation using

BLOCKS method: 128 KB

Processing object type

TABLE_EXPORT/TABLE/TABLE

Processing object type

TABLE_EXPORT/TABLE/INDEX/INDEX

Processing object type

TABLE_EXPORT/TABLE/CONSTRAINT/CONSTRAINT

Processing object type

TABLE_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS

Processing object type

TABLE_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT

Processing object type

TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS

. . exported

"SCOTT"."DEPT"  5.656 KB  4 rows

. . exported

"SCOTT"."EMP"  7.820 KB  14 rows

Master table

"SCOTT"."SYS_EXPORT_TABLE_01" successfully loaded/unloaded

******************************************************************************

Dump file set for

SCOTT.SYS_EXPORT_TABLE_01 is:

/home/oracle/dump/scott/dumptab.dmp

Job

"SCOTT"."SYS_EXPORT_TABLE_01" successfully completed at

14:55:56

--后台中DMnn,DWnn进程为启动DataPump是产生的进程

[oracle@oradb /]$ ps -ef

| grep ora_d

oracle

3445  1  0 14:19 ?  00:00:00

ora_dbw0_orcl

oracle

3461  1  0 14:19 ?  00:00:00

ora_d000_orcl

[oracle@oradb ~]$ ls -lh

/home/oracle/dump/scott

total 132K

-rw-r----- 1 oracle

oinstall 124K Sep 20 14:55 dumptab.dmp

-rw-r--r-- 1 oracle

oinstall 1.4K Sep 20 14:55 scott.log

b. 基于用户模式导出

[oracle@oradb /]$ expdp

scott/tiger directory=dump_scott dumpfile=dumpscott.dmp

schemas=scott

Export: Release

10.2.0.1.0 - Production on Monday, 20 September, 2010

15:08:55

Copyright (c) 2003,

2005, Oracle.  All rights reserved.

Connected to: Oracle

Database 10g Enterprise Edition Release 10.2.0.1.0 -

Production

With the Partitioning,

OLAP and Data Mining options

Starting

"SCOTT"."SYS_EXPORT_SCHEMA_01":  scott

directory=dump_scott dumpfile=dumpscott.dmp schemas=scott

Estimate in progress

using BLOCKS method...

Processing object type

SCHEMA_EXPORT/TABLE/TABLE_DATA

Total estimation using

BLOCKS method: 192 KB

Processing object type

SCHEMA_EXPORT/PRE_SCHEMA/PROCACT_SCHEMA

Processing object type

SCHEMA_EXPORT/TABLE/TABLE

Processing object type

SCHEMA_EXPORT/TABLE/INDEX/INDEX

Processing object type

SCHEMA_EXPORT/TABLE/CONSTRAINT/CONSTRAINT

Processing object type

SCHEMA_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS

Processing object type

SCHEMA_EXPORT/TABLE/COMMENT

Processing object type

SCHEMA_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT

Processing object type

SCHEMA_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS

. . exported

"SCOTT"."DEPT"  5.656 KB  4 rows

. . exported

"SCOTT"."EMP"  7.820 KB  14 rows

. . exported

"SCOTT"."SALGRADE"  5.585 KB  5 rows

. . exported

"SCOTT"."BONUS"  0 KB  0 rows

Master table

"SCOTT"."SYS_EXPORT_SCHEMA_01" successfully loaded/unloaded

******************************************************************************

Dump file set for

SCOTT.SYS_EXPORT_SCHEMA_01 is:

/home/oracle/dump/scott/dumpscott.dmp

Job

"SCOTT"."SYS_EXPORT_SCHEMA_01" successfully completed at

15:09:23

c.基于表空间导出

[oracle@oradb /]$ expdp

scott/tiger directory=dump_scott dumpfile=users1.dmp,user2.dmp

/

>

compression tablespaces=users

Export: Release

10.2.0.1.0 - Production on Monday, 20 September, 2010

15:17:35

Copyright (c) 2003,

2005, Oracle.  All rights reserved.

Connected to: Oracle

Database 10g Enterprise Edition Release 10.2.0.1.0 -

Production

With the Partitioning,

OLAP and Data Mining options

Starting

"SCOTT"."SYS_EXPORT_TABLESPACE_01":  scott

directory=dump_scott dumpfile=users1.dmp,user2.dmp compression

tablespaces=users

Estimate in progress

using BLOCKS method...

Processing object type

TABLE_EXPORT/TABLE/TABLE_DATA

Total estimation using

BLOCKS method: 192 KB

Processing object type

TABLE_EXPORT/TABLE/TABLE

Processing object type

TABLE_EXPORT/TABLE/INDEX/INDEX

Processing object type

TABLE_EXPORT/TABLE/CONSTRAINT/CONSTRAINT

Processing object type

TABLE_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS

Processing object type

TABLE_EXPORT/TABLE/COMMENT

Processing object type

TABLE_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT

Processing object type

TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS

. . exported

"SCOTT"."DEPT"  5.656 KB  4 rows

. . exported

"SCOTT"."EMP"  7.820 KB  14 rows

. . exported

"SCOTT"."SALGRADE"  5.585 KB  5 rows

. . exported

"SCOTT"."BONUS"  0 KB  0 rows

Master table

"SCOTT"."SYS_EXPORT_TABLESPACE_01" successfully

loaded/unloaded

******************************************************************************

Dump file set for

SCOTT.SYS_EXPORT_TABLESPACE_01 is:

/home/oracle/dump/scott/users1.dmp

Job

"SCOTT"."SYS_EXPORT_TABLESPACE_01" successfully completed at

15:17:51

[oracle@oradb /]$ ls -lh

/home/oracle/dump/scott

total 524K

-rw-r----- 1 oracle

oinstall 4.0K Sep 20 15:17 compression.dmp

-rw-r----- 1 oracle

oinstall 224K Sep 20 15:09 dumpscott.dmp

-rw-r----- 1 oracle

oinstall 124K Sep 20 14:55 dumptab.dmp

-rw-r--r-- 1 oracle

oinstall 1.6K Sep 20 15:17 export.log

-rw-r--r-- 1 oracle

oinstall 1.4K Sep 20 14:55 scott.log

-rw-r----- 1 oracle

oinstall 4.0K Sep 20 15:17 user2.dmp

-rw-r----- 1 oracle

oinstall 148K Sep 20 15:17 users1.dmp

d.

导出整个数据库,且使用并行导出方式

[oracle@oradb /]$ expdp

scott/tiger directory=dump_scott dumpfile=full20_%u.dmp parallel=4

full=y

Export: Release

10.2.0.1.0 - Production on Monday, 20 September, 2010

15:24:02

Copyright (c) 2003,

2005, Oracle.  All rights reserved.

Connected to: Oracle

Database 10g Enterprise Edition Release 10.2.0.1.0 -

Production

With the Partitioning,

OLAP and Data Mining options

ORA-31631: privileges

are required

ORA-39161: Full database

jobs require privileges

[oracle@oradb /]$

sqlplus /nolog

SQL*Plus: Release

10.2.0.1.0 - Production on Mon Sep 20 15:24:16 2010

Copyright (c) 1982,

2005, Oracle.  All rights reserved.

SQL> conn

/as sysdba

Connected.

Grant succeeded.

SQL>

!

[oracle@oradb /]$ expdp

scott/tiger directory=dump_scott dumpfile=full20_%u.dmp parallel=6

full=y

--中间过程省略

[oracle@oradb dump]$ ls

-lh ./scott/fu*

-rw-r----- 1 oracle

oinstall  19M Sep 20 15:36

./scott/full20_01.dmp

-rw-r----- 1 oracle

oinstall  22M Sep 20 15:34

./scott/full20_02.dmp

-rw-r----- 1 oracle

oinstall  18M Sep 20 15:36

./scott/full20_03.dmp

-rw-r----- 1 oracle

oinstall  15M Sep 20 15:36

./scott/full20_04.dmp

-rw-r----- 1 oracle

oinstall 5.4M Sep 20 15:36 ./scott/full20_05.dmp

-rw-r----- 1 oracle

oinstall 196K Sep 20 15:33 ./scott/full20_06.dmp

[oracle@oradb dump]$ ps

-ef | grep ora_d

oracle

3445  1  0 14:19 ?  00:00:01

ora_dbw0_orcl

oracle

3461  1  0 14:19 ?  00:00:00

ora_d000_orcl

oracle

23443  1

4 15:32 ?  00:00:01 ora_dm00_orcl

oracle

23494  1 23

15:32 ?  00:00:08 ora_dw01_orcl

oracle

23673  1 11

15:33 ?  00:00:02 ora_dw02_orcl

oracle

23675  1 16

15:33 ?  00:00:03 ora_dw03_orcl

oracle

23677  1

8 15:33 ?  00:00:01 ora_dw04_orcl

oracle

23679  1

5 15:33 ?  00:00:00 ora_dw05_orcl

oracle

23681  1

2 15:33 ?  00:00:00 ora_dw06_orcl

oracle

23696  2416  0

15:33 pts/1  00:00:00 grep

ora_d

五、数据泵的监控

1.查询dba_directories获得所创建的目录

2.可以查询dba_datapump_jobs来查看数据泵作业的运行情况,也可以利用ATTACH重新连接上还在进行的JOB

每个datapump可以通过job_name

参数来指定作业名称,如未指定,则系统使用默认的作业名称,如下面的视图中为SYS_EXPORT_FULL_01

通过v$session_longops也可以查看长时间运行的datapump job的具体内容

SQL> select owner_name

owr,job_name jbn,operation ope,job_mode jbm,state,degree,

2

attached_sessions atts,datapump_sessions

dats

3  from

dba_datapump_jobs;

OWR  JBN  OPE  JBM  STATE  DEGREE  ATTS  DATS

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

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

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

SCOTT  SYS_EXPORT_FULL_01  EXPORT

FULL  COMPLETING  2

1  2

SQL> select sid,

serial#,session_type

2  from

v$session s, dba_datapump_sessions d

3  where

s.saddr = d.saddr;

SID  SERIAL# SESSION_TYPE

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

143  10

DBMS_DATAPUMP

149  37

MASTER

132  3 WORKER

136  3 WORKER

135  4 WORKER

141  5 WORKER

128  2 WORKER

142  4 WORKER

3.监控数据泵的逻辑备份程度

SELECT sid, serial#, context, sofar,

totalwork,

ROUND(sofar/totalwork*100,2) "%_COMPLETE"

FROM v$session_longops

WHERE opname LIKE '%EXP%'

AND totalwork != 0

AND sofar <>

totalwork;

SID SERIAL# CONTEXT SOFAR  TOTALWORK  %_COMPLETE

130 33  0

54

70  77.14

六、expdp的常用参数

1.content:

该选项用于指定要导出的内容.默认值为ALL

CONTENT={ALL | DATA_ONLY | METADATA_ONLY}

expdp scott/tiger

schemas=scott content=all

expdp scott/tiger tables=emp content=data_only

directory=dump_scott dumpfile=empdata.dmp(只导出对象数据)

expdp scott/tiger tables=emp

content=metadata_only directory=dump_scott

dumpfile=empmd.dmp(只有定义信息)

2.estimate:

指定估算被导出表所占用磁盘空间分方法.默认值是blocks

expdp scott/tiger directory=dump_scott

dumpfile=dba_object.dmp tablespaces=users estimate=statistics

expdp scott/tiger directory=dump_scott

dumpfile=dba_object.dmp tablespaces=users estimate=blocks

3.extimate_only:指定是否只估算导出作业所占用的磁盘空间,默认值为N

expdp scott/tiger

schemas=scott estimate_only=y

设置为Y时,导出作用只估算对象所占用的磁盘空间,而不会执行导出作业,

为N时,不仅估算对象所占用的磁盘空间,还会执行导出操作.

4.exclude:该选项用于指定执行操作时释放要排除对象类型或相关对象

exclude=view

exclude=package

exclude=index:"like 'EMP%'

object_type用于指定要排除的对象类型,name_expr用于指定要排除的具体对象.exclude和include不能同时使用

expdp scott/tiger

schemas=scott  exclude=view

dumpfile=a9.dmp

include = object_type[:"name_expr"]

5.filesize:指定导出文件的最大尺寸,默认为,(表示文件尺寸没有限制)

6.flashback_scn:

前提闪回功能开启

expdp scott/tiger  tables=emp

dumpfile=e2.dmp  flashback_scn=4284715

如果闪回的时间点该对象结构发生变化,将报错(比如该对象没有创建或者ddl操作)

7.flashback_time:指定导出特定时间点的表数据

expdp scott/tiger DIRECTORY=dump DUMPFILE=a.dmp

FLASHBACK_TIME="TO_TIMESTAMP(’-08-2004 14:35:00’,’DD-MM-YYYY

HH24:MI:SS’)"

windows下:

C:/>expdp scott/tiger

DIRECTORY=dump_dir DUMPFILE=a.dmp

flashback_time=/"TO_TIMESTAMP('06-04-2010

11:24:26', 'DD-MM-YYYY HH24:MI:SS')/"

8.query导出查询得到的结果集

query=scott.emp :"where deptno = 30 and sal

> 3500"

9.sample

使用该参数进行对导出的数据进行采样

sample="scott"."emp":20

expdp scott/tiger directory=dump_scott

dumpfile=sam.dmp sample=30

10.dumpfile

指定导出时的文件名

dumpfile=scott_tb.dmp

dumpfile=scott_tb_%u.dmp  %u

用于扩展导出的文件名,固定长度为个字符,从开始递增,使用并行导出时建议指定该参数

http://blog.csdn.net/robinson_0612/article/details/5926276

--=================================

--数据泵IMPDP 导入工具的使用

--=================================

数据的导入导出时数据库经常处理的作业之一,Oracle

提供了IMP和IMPDP以及SQL*Loader等工具来完成数据的导入工作,其中IMP服务于早期的9i之前的版本,在10g及后续版本,Oracle

提供了数据泵高速导入工具,本文主要介绍IMPDP的使用方法,关于高速导出工具请参照:数据泵EXPDP

导出工具的使用。SQL*Loader请参照:SQL*Loader使用方法。

一、数据泵的体系结构

数据泵的体系结构在数据泵EXPDP

导出工具的使用已列出,再此不再赘述。

二、IMPDP支持的接口及导入模式

导入接口

使用命令行带参数的

使用命令行带参数文件

使用命令行交互

使用database console(GUI)

几种常用的导入模式

导入表

导入方案

导入表空间

导入数据库

传输表空间模式

三、演示如何导入

1.关于查看impdp的帮助,使用以下命令

[oracle@oradb ~]$ impdp -?

或[oracle@oradb ~]$ impdp -help

前者提供帮助信息并开启命令行交互模式

2. 导入表

--将表dept,emp导入到scott方案中

impdp scott/tiger directory=dump_scott

dumpfile=tab.dmp tables=dept,emp

--将表dept和emp从scott方案导入到system方案中,对于方案的转移,必须使用remap_shcema参数

impdp system/manage directory=dump_scott

dumpfile=tab.dmp tables=scott.dept,scott.emp

remap_schema=scott:system

3.导入方案

--将dump_scott目录下的schema.dmp导入到scott方案中

impdp scott/tiger directory=dump_scott

dumpfile=schema.dmp schemas=scott

--将scott方案中的所有对象转移到system方案中

impdp system/redhat directory=dump_scott

dumpfile=schema.dmp schemas=scott remap_schema=scott:system

4.导入表空间

impdp system/redhat directory=dump_scott

dumpfile=tablespace.dmp tablespaces=user01

5.导入数据库

impdp system/redhat directory=dump_scott

dumpfile=full.dmp full=y

6.将数据对象原样导回(演示从Windows客户端来实现,数据库基于Linux系统)

从Windows客户端来导出scott.emp表,导出后删除该表,再原样导回

C:/>expdp scott/tiger@list2

directory=dump_scott dumpfile=emp.dmp tables=emp

C:/>sqlplus

scott/tiger@list2

SQL*Plus: Release 10.2.0.1.0 - Production on

星期一9月20 20:50:35 2010

Copyright (c) 1982, 2005, Oracle.

All rights reserved.

Connected to:

Oracle Database 10g Enterprise Edition Release

10.2.0.1.0 - Production

With the Partitioning, OLAP and Data Mining

options

SQL> drop table emp;

Table dropped.

SQL> commit;

Commit complete.

SQL> select count(1) from

emp;

select count(1) from emp

*

ERROR at line 1:

ORA-00942: table or view does not exist

SQL> host impdp scott/tiger@list2

directory=dump_scott dumpfile=emp.dmp

SQL> select count(1) from

emp;

COUNT(1)

----------

14

7.将导出的对象使用remap_schema参数转移到不同的方案

a.将dept从scott用户导入到system用户下

expdp

scott/tiger directory=dump_scott dumpfile=dept.dmp

tables=dept

方法一:

impdp

system/redhat tables=scott.dept directory=dump_scott

dumpfile=dept.dmp remap_schema=scott:system

方法二:

sql>grant imp_full_database to scott;

impdp

scott/tiger directory=dump_scott dumpfile=dept.dmp

tables=dept

remap_schema=scott:system table_exists_action=replace

b.将scott方案下的所有对象导入到system方案下

expdp

scott/tiger directory=dump_scott dumpfile=allobj.dmp

schemas=scott

impdp

scott/tiger directory=dump_scott dumpfile=allobj.dmp

remap_schema=scott:system table_exists_action=replace

8.使用remap_datafile参数转移到不同的数据文件(用于不同平台之间存在不同命名方式时)

下面的示例首先创建了一个参数文件,参数文件名为payroll.par

directory=pump_scott

full=y

dumpfile=datafile.dmp

remap_datafile='db$:[hrdata.payroll]tbs2.f':'/db/hrdata/payroll/tbs2.f'

--指明重新映射数据文件

impdp

scott/tiger PARFILE=payroll.par

9.使用remap_tablespace参数转移到不同的表空间

impdp scott/scott remap_tablespace=users:tbs1

directory=dpump_scott dumpfile=users.dmp

10.并行导入:

expdp e/e directory=dump_e dumpfile=a_%u.dmp

schemas=e parallel=3

impdp e/e directory=dump_e dumpfile=a_%u.dmp

schemas=e parallel=3 table_exists_action=replace

四、数据泵impdp参数:

1.REMAP_DATAFILE

该选项用于将源数据文件名转变为目标数据文件名,在不同平台之间搬移表空间时需要该选项.

REMAP_DATAFILE=source_datafie:target_datafile

2.REMAP_SCHEMA

该选项用于将源方案的所有对象装载到目标方案中.

REMAP_SCHEMA=source_schema:target_schema

3.REMAP_TABLESPACE

将源表空间的所有对象导入到目标表空间中

REMAP_TABLESPACE=source_tablespace:target:tablespace

4.REUSE_DATAFILES

该选项指定建立表空间时是否覆盖已存在的数据文件.默认为N

REUSE_DATAFIELS={Y | N}

5.SKIP_UNUSABLE_INDEXES

指定导入是是否跳过不可使用的索引,默认为N

6,sqlfile

参数允许创建DDL 脚本文件

impdp scott/tiger directory=dump_scott

dumpfile=a1.dmp sqlfile=c.sql

默认放在directory下,因此不要指定绝对路径

7.STREAMS_CONFIGURATION

指定是否导入流元数据(Stream Matadata),默认值为Y.

8.TABLE_EXISTS_ACTION

该选项用于指定当表已经存在时导入作业要执行的操作,默认为SKIP

TABBLE_EXISTS_ACTION={SKIP | APPEND | TRUNCATE |

FRPLACE }

当设置该选项为SKIP时,导入作业会跳过已存在表处理下一个对象;

当设置为APPEND时,会追加数据

当设置为TRUNCATE时,导入作业会截断表,然后为其追加新数据;

当设置为REPLACE时,导入作业会删除已存在表,重建表并追加数据,

注意,TRUNCATE选项不适用与簇表和NETWORK_LINK选项

9.TRANSFORM

该选项用于指定是否修改建立对象的DDL语句

TRANSFORM=transform_name:value[:object_type]

transform_name用于指定转换名,其中SEGMENT_ATTRIBUTES用于标识段属性(物理属性,存储属性,表空间,日志等信息),

STORAGE用于标识段存储属性,VALUE用于指定是否包含段属性或段存储属性,object_type用于指定对象类型.

Impdp scott/tiger directory=dump

dumpfile=tab.dmp transform=segment_attributes:n:table

10.TRANSPORT_DATAFILES

该选项用于指定搬移空间时要被导入到目标数据库的数据文件

TRANSPORT_DATAFILE=datafile_name

Datafile_name用于指定被复制到目标数据库的数据文件

Impdp system/manager DIRECTORY=dump

DUMPFILE=tts.dmp

TRANSPORT_DATAFILES=’/user01/data/tbs1.f’

五、影响数据泵性能的相关参数

对下列参数建议如下设置

disk_asynch_io=true

db_block_checking=false

db_block_checksum=false

对下列参数建议设置更高的值来提高并发

processes

sessions

parallel_max_servers

对下列参数应尽可能的调大空间大小

shared_pool_size

undo_tablespace

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值