oracle expdp/impdp导出导入及数据库备份

介绍的expdp、impdp命令最后面不允许使用分号“;”结尾 否则命令会报错使用expdp以及impdp导入导出数据库用户的效率比exp、imp要快很多

使用expdp和impdp时应该注意的事项:

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

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

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

expdp或impdp命令时,可暂不指出用户名/密码@实例名 as 身份,然后根据提示再输入,如:

expdp schemas=scott dumpfile=expdp.dmp directory=dpdata1;

一、创建逻辑目录,该命令不会在操作系统创建真正的目录,最好以system等管理员创建。

create directory dpdata1 as ‘d:\test\dump’;

二、查看管理理员目录(同时查看操作系统是否存在,因为oracle并不关心该目录是否存在,如果不存在,则出错)

select * from dba_directories;

三、给scott用户赋予在指定目录的操作权限,最好以system等管理员赋予。

grant read,write on directory dpdata1 to scott;

四、导出数据

1)按用户导

expdp scott/tiger@orcl schemas=scott dumpfile=expdp.dmp directory=dpdata1;

2)并行进程parallel

expdp scott/tiger@orcl directory=dpdata1 dumpfile=scott3.dmp parallel=40 job_name=scott3

3)按表名导

expdp scott/tiger@orcl tables=emp,dept dumpfile=expdp.dmp directory=dpdata1;

4)按查询条件导

expdp scott/tiger@orcl directory=dpdata1 dumpfile=expdp.dmp tables=emp query=’where deptno=20′;

5)按表空间导

expdp system/manager directory=dpdata1 dumpfile=tablespace.dmp tablespaces=temp,example;

6)导整个数据库

expdp system/manager directory=dpdata1 dumpfile=full.dmp full=y;

五、还原数据

1)导到指定用户下

impdp scott/tiger directory=dpdata1 dumpfile=expdp.dmp schemas=scott;

2)改变表的owner

impdp system/manager directory=dpdata1 dumpfile=expdp.dmp tables=scott.dept remap_schema=scott:system;

3)导入表空间

impdp system/manager directory=dpdata1 dumpfile=tablespace.dmp tablespaces=example;

4)导入数据库

impdb system/manager directory=dump_dir dumpfile=full.dmp full=y;

5)追加数据

impdp system/manager directory=dpdata1 dumpfile=expdp.dmp schemas=system table_exists_action

  • 73 views
    a
发布日期:2021年08月28日 12:00:00  所属分类:知识经验
标签: