Oracle数据库的expdp、impdp导入导出命令详解

December 17, 2023
测试
测试
测试
测试
4 分钟阅读

一、创建目录

1.创建逻辑目录:(目录必须存在,不然会报错,最后以system创建)

create directory dpdata as '/u01/app/oracle/oracledata/dump';

或者create or replace directory dpdata as '/u01/app/oracle/oracledata/dump';

2.查看管理理员目录

select * from dba_directories;

3.解锁scott用户

sqlplus /nolog

管理员登录:conn sys/password as sysdba

alter user scott identified by tiger;

解锁alter user scott account unlock;

验证:conn scott/tiger

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

grant read,write on directory dpdata to scott;

二、导出数据 1)按用户导 expdp scott/tiger@orcl schemas=scott dumpfile=expdp.dmp DIRECTORY=dpdata; 2)并行进程parallel expdp scott/tiger@orcl directory=dpdata dumpfile=scott3.dmp parallel=40 job_name=scott3 3)按表名导 expdp scott/tiger@orcl TABLES=emp,dept dumpfile=expdp.dmp DIRECTORY=dpdata; 4)按查询条件导 expdp scott/tiger@orcl directory=dpdata dumpfile=expdp.dmp Tables=emp query='WHERE deptno=20'; 5)按表空间导 expdp system/manager DIRECTORY=dpdata DUMPFILE=tablespace.dmp TABLESPACES=temp,example; 6)导整个数据库 expdp system/manager DIRECTORY=dpdata DUMPFILE=full.dmp FULL=y;

若需要覆盖添加参数table_exists_action=replace

{skip 是如果已存在表,则跳过并处理下一个对象;append是为表增加数据;truncate是截断表,然后为其增加新数据;replace是删除已存在表,重新建表并追加数据} 三、还原数据 1)导到指定用户下 impdp scott/tiger DIRECTORY=dpdata DUMPFILE=expdp.dmp SCHEMAS=scott; 2)改变表的owner impdp system/manager DIRECTORY=dpdata DUMPFILE=expdp.dmp TABLES=scott.dept REMAP_SCHEMA=scott:system; 3)导入表空间 impdp system/manager DIRECTORY=dpdata DUMPFILE=tablespace.dmp TABLESPACES=example; 4)导入数据库 impdb system/manager DIRECTORY=dump_dir DUMPFILE=full.dmp FULL=y; 5)追加数据 impdp system/manager DIRECTORY=dpdata DUMPFILE=expdp.dmp SCHEMAS=system TABLE_EXISTS_ACTION=append;

继续阅读

更多来自我们博客的帖子

如何安装 BuddyPress
由 测试 December 17, 2023
经过差不多一年的开发,BuddyPress 这个基于 WordPress Mu 的 SNS 插件正式版终于发布了。BuddyPress...
阅读更多
Filter如何工作
由 测试 December 17, 2023
在 web.xml...
阅读更多
如何理解CGAffineTransform
由 测试 December 17, 2023
CGAffineTransform A structure for holding an affine transformation matrix. ...
阅读更多