裸设备
挂载裸设备
首先在linux下创建一个分区sda7,且不要格式化
[root@hou ~]# raw /dev/raw/raw1 /dev/sda7
[root@hou ~]# ll /dev/raw
[root@hou ~]# chown oracle.oinstall /dev/raw/raw1
在裸设备上创建表空间
SQL> create tablespace raw01 datafile '/dev/raw/raw1' size 2m ;
SQL> create table tt1 tablespace raw01 as select * from scott.emp ;
rman中备份raw01表空间
RMAN> backup tablespace RAW01;
[oracle@hou ~]$ dd if=/dev/zero of=/dev/raw/raw1 bs=8k count=17
alter system switch logfile;
select * from tt1;
发现select后报6号文件错误
查询表创建在哪个表空间上
select tablespace_name from user_tables
在rman中启动到mount状态
RMAN> restore datafile 6;
RMAN> recover datafile 6;
SQL > alter tablespace RAW01 online;
SQL> select tablespace_name from user_tables
而后正常
阅读(2132) | 评论(0) | 转发(0) |