expdp&impdp

本文详细介绍了Oracle数据库中导出数据的各种方法,包括按用户、表、查询条件和表空间导出,以及相应的数据还原过程。此外,还讨论了如何在不同用户之间导入数据、更改表所有者、导入表空间和整个数据库的方法。
摘要由CSDN通过智能技术生成

1 创建逻辑目录,该命令不会在操作系统创建真正的目录,最好以system等管理员创建。
 create directory dpdata1 as '/opt/oracle/dpdata1';
 create directory expdata as '/ora_arch/expdata';

 2 查看管理理员目录(同时查看操作系统是否存在,因为Oracle并不关心该目录是否存在,如果不存在,则出错)
 select * from dba_directories;

 3 给scott用户赋予在指定目录的操作权限,最好以system等管理员赋予。
 grant read,write on directory expdata to ardb;

 4 导出数据
 1)按用户导
 expdp billingcdrdb/billingcdrdb@prodbillingcdrdb schemas=billingcdrdb dumpfile=prodbillingcdrdb.dmp directory=dpdata1 logfile=prodbillingcdrdb.log;
 expdp billingcdrdb/billingcdrdb@prodbillingcdrdb schemas=billingcdrdb dumpfile=prodbillingcdrdb.dmp directory=dumpdir CONTENT=METADATA_ONLY logfile=prodbillingcdrdb.log;
 2)并行进程parallel
 expdp scott/tiger@orcl directory=dpdata1 dumpfile=scott3.dmp parallel=40 job_name=scott3
 3)按表名导
 expdp ardb/ardb TABLES=log_trx_detail dumpfile=log_trx_detail.dmp DIRECTORY=expdata;
 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;

 5 还原数据
 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

 drop user algeria cascade ;
 create user algeria identified by algeria default tablespace algeria ;
 grant connect , resource to algeria ;
 grant create synonym , create view to algeria ;
 create directory algeria as 'd:\algeria';
 impdp billingcdrdb1/billingcdrdb1 directory=dpdata1 dumpfile=prodbillingcdrdb.dmp remap_schema=billingcdrdb:billingcdrdb1 logfile=impdp.log

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值