码迷,mamicode.com
首页 > 其他好文 > 详细

逻辑导入导出exp/imp与数据泵expdp/impdp

时间:2017-11-29 18:21:49      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:传输   created   对象   table   二进制   sele   指定   set   1.3   

传统的导入导出exp/imp

1.概述:

传统的导出导入程序指的是exp/imp,用于实施数据库的逻辑备份和恢复。

导出程序exp将数据库中对象的定义和数据备份到一个操作系统二进制文件中。

导入程序imp读取二进制导出文件并将对象定义和数据载入数据库中

2.

导出和导入数据库对象的四种模式是:

1,数据库模式:导出和导入整个数据库中的所有对象

2,表空间模式:导出和导入一个或多个指定的表空间中的所有对象,10g新增添可传输表空间。

3,用户模式:导出和导入一个用户模式中的所有对象

4,表模式:导出和导入一个或多个指定的表或表分区

实验:

1>scott表的导入导出自己的表

SYS@ PROD>conn scott/tiger
Connected.
SCOTT@ PROD>create table emp1 as select * from emp;

Table created.

SCOTT@ PROD>create table dept1 as select * from dept;

Table created.

quit

drop table dept1 purge;

drop table emp1 purge;

exp scott/tiger file=/home/oracle/backup/empdept1.dmp tables="(emp1,dept1)";

当在tables后面不加双引号时会报错:

-bash: syntax error near unexpected token `(‘

SQL> drop table emp1 purge;

SQL> drop table dept1 purge;

imp scott/tiger file=/home/oracle/backup/empdept1.dmp

查看数据验证

2>sys导出scott表

exp \‘sys/system as sysdba\‘ file=/home/oracle/backup/sysscott.dmp tables="(scott.emp1,scott.dept1)";

drop table dept1 purge;

drop table emp1 purge;

imp \‘sys/system as sysdba\‘ file=/home/oracle/backup/sysscott.dmp fromuser=scott;

3>导入导出用户

exp test/test file=/home/oracle/backup/test.dmp owner=test;

drop user test cascade;

grant connect,resource to test identified by test;

grant dba to test;

imp test/test file=/home/oracle/backup/test.dmp full=y;

如果用sys来完成也可以使用如下命令:

imp ‘sys/system@prod as sysdba‘ file=/home/oracle/backup/scott.dmp fromuser=scott touser=scott

sys用户也可以将导出的scott的内容导入给其他用户

imp ‘sys/system@prod as sysdba‘ file=/home/oracle/backup/scott.dmp fromuser=scott touser=tim

4>导入导出表空间


SYS@ PROD>create tablespace tb1 datafile ‘/u01/app/oracle/oradata/PROD/mytb1.dbf‘ size 5M;

scott用户下:

create table t1(year number(4),month number(2),amount number(2,1)) tablespace tb1;

insert into t1 values(1991,1,1.1);

insert into t1 values(1991,2,1.2);

insert into t1 values(1991,3,1.3);

insert into t1 values(1991,4,1.4);

commit;

alter tablespace tb1 read only;

exp \‘/ as sysdba\‘ tablespaces=tb1 transport_tablespace=y file=/home/oracle/backup/exp_tb1.dmp;

将数据文件/u01/app/oracle/oradata/PROD/mytb1.dbf和/u01/app/oracle/oradata/PROD/mytb1.dbf复制到另一台设备进行导入,这也是远程导入导出

imp userid=\‘/ as sysdba\‘ tablespaces=tb1 transport_tablespace=y file=/home/oracle/backup/exp_tb1.dmp datafiles=/u01/app/oracle/oradata/PROD/mytb1.dbf;

验证在这台设备有没有T1。

SQL>select tablespace_name,status from dba_tablespaces;

SQL>select * from scott.t1;

重设回读写方式

SQL>alter tablespace tb1 read write;

5>

什么叫自包含:

当前表空间中的对象不依赖该表空间之外的对象。

例如:有TEST表空间,里面有个表叫T1,如果在T1上建个索引叫T1_idx,而这个索引建在USERS表空间上,由于T1_idx索引是依赖T1表的,

那么,TEST表空间是自包含的,可以迁移,但会甩掉T1_idx索引,USERS表空间不是自包含的,不符合迁移条件。

检查表空间是否自包含可以使用程序包

如上面的例子

SQL> execute dbms_tts.transport_set_check(‘USERS‘);

SQL> select * from TRANSPORT_SET_VIOLATIONS;

VIOLATIONS

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

ORA-39907: 索引 SCOTT.EMP1_IDX (在表空间 TEST 中) 指向表 SCOTT.EMP1 (在表空间 USERS 中)。

6>导出整个数据库

exp ‘sys/system@prod as sysdba‘ file=/home/oracle/backup/full.dmp full=y


 

数据泵expdp/impdp

数据泵优点:

1)改进性能(较传统的exp/imp速度提高1-2个数量级)

2)重启作业能力

3)并行执行能力

4)关联运行作业能力

5)估算空间需求能力

6)操作网络方式

 

逻辑导入导出exp/imp与数据泵expdp/impdp

标签:传输   created   对象   table   二进制   sele   指定   set   1.3   

原文地址:http://www.cnblogs.com/wjmbk/p/7921667.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!