在线精品99_中国九九盗摄偷拍偷看_91免费版在线观看_91.app_91高清视频在线_99热最新网站

RMAN如何恢复drop purge的表

237次阅读
没有评论

共计 4318 个字符,预计需要花费 11 分钟才能阅读完成。

这篇文章主要介绍 RMAN 如何恢复 drop purge 的表,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!

@ORA12C  alter session set nls_date_format= yyyy-mm-dd hh34:mi:ss 
Session altered.
SYS@ORA12C  create table t_0920 as select * from dba_objects;
Table created.
SYS@ORA12C  select count(*) from t_0920;
 COUNT(*)
-----------------
 91691
1 row selected.
SYS@ORA12C  select sysdate from dual;
SYSDATE
-------------------
2015-09-20 14:17:49
1 row selected.
SYS@ORA12C  drop table t_0920 purge;
Table dropped.
SYS@ORA12C  desc t_0920;
ERROR:
ORA-04043: object t_0920 does not exist
SYS@ORA12C  create table t_09201 as select * from dba_objects;
Table created.
SYS@ORA12C  select count(*) from t_09201;
 COUNT(*)
-----------------
 91691
1 row selected.
SYS@ORA12C  shutdown immediate;
Database closed.
Database dismounted.
ORACLE instance shut down.
SYS@ORA12C  startup mount;
ORACLE instance started.
Total System Global Area 729808896 bytes
Fixed Size 2928680 bytes
Variable Size 570429400 bytes
Database Buffers 150994944 bytes
Redo Buffers 5455872 bytes
Database mounted.

现在需要把 t_0920 表恢复过来:

run{
sql  alter session set nls_date_format= yyyy-mm-dd hh34:mi:ss 
set until time  2015-09-20 14:17:49 
restore database;
recover database;
6  }
using target database control file instead of recovery catalog
sql statement: alter session set nls_date_format= yyyy-mm-dd hh34:mi:ss 
executing command: SET until clause
Starting restore at 20-SEP-15
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=355 device type=DISK
creating datafile file number=2 name=/u01/app/oracle/oradata/ORA12C/t2.dbf
channel ORA_DISK_1: starting datafile backup set restore
channel ORA_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/ORA12C/system01.dbf
channel ORA_DISK_1: restoring datafile 00003 to /u01/app/oracle/oradata/ORA12C/sysaux01.dbf
channel ORA_DISK_1: restoring datafile 00004 to /u01/app/oracle/oradata/ORA12C/undotbs01.dbf
channel ORA_DISK_1: restoring datafile 00005 to /u01/app/oracle/oradata/ORA12C/example01.dbf
channel ORA_DISK_1: restoring datafile 00006 to /u01/app/oracle/oradata/ORA12C/users01.dbf
channel ORA_DISK_1: reading from backup piece /u01/app/oracle/fast_recovery_area/ORA12C/backupset/2015_09_20/o1_mf_nnndf_TAG20150920T120820_bzwd9ntd_.bkp
channel ORA_DISK_1: piece handle=/u01/app/oracle/fast_recovery_area/ORA12C/backupset/2015_09_20/o1_mf_nnndf_TAG20150920T120820_bzwd9ntd_.bkp tag=TAG20150920T120820
channel ORA_DISK_1: restored backup piece 1
channel ORA_DISK_1: restore complete, elapsed time: 00:01:56
Finished restore at 20-SEP-15
Starting recover at 20-SEP-15
using channel ORA_DISK_1
starting media recovery
archived log for thread 1 with sequence 18 is already on disk as file /u01/app/oracle/fast_recovery_area/ORA12C/archivelog/2015_09_20/o1_mf_1_18_bzwh058r_.arc
archived log for thread 1 with sequence 19 is already on disk as file /u01/app/oracle/fast_recovery_area/ORA12C/archivelog/2015_09_20/o1_mf_1_19_bzwhh60d_.arc
archived log for thread 1 with sequence 20 is already on disk as file /u01/app/oracle/fast_recovery_area/ORA12C/archivelog/2015_09_20/o1_mf_1_20_bzwhzsts_.arc
archived log for thread 1 with sequence 1 is already on disk as file /u01/app/oracle/fast_recovery_area/ORA12C/archivelog/2015_09_20/o1_mf_1_1_bzwmprks_.arc
archived log file name=/u01/app/oracle/fast_recovery_area/ORA12C/archivelog/2015_09_20/o1_mf_1_18_bzwh058r_.arc thread=1 sequence=18
archived log file name=/u01/app/oracle/fast_recovery_area/ORA12C/archivelog/2015_09_20/o1_mf_1_19_bzwhh60d_.arc thread=1 sequence=19
archived log file name=/u01/app/oracle/fast_recovery_area/ORA12C/archivelog/2015_09_20/o1_mf_1_20_bzwhzsts_.arc thread=1 sequence=20
archived log file name=/u01/app/oracle/fast_recovery_area/ORA12C/archivelog/2015_09_20/o1_mf_1_1_bzwm5k1c_.arc thread=1 sequence=1
archived log file name=/u01/app/oracle/fast_recovery_area/ORA12C/archivelog/2015_09_20/o1_mf_1_1_bzwmprks_.arc thread=1 sequence=1
media recovery complete, elapsed time: 00:00:07
Finished recover at 20-SEP-15
RMAN  alter database open resetlogs;
Statement processed

验证:t_0920 表已经恢复了,t_09201 表不存在了。

SYS@ORA12C  select count(*) from t_0920;
 COUNT(*)
-----------------
 91691
1 row selected.
SYS@ORA12C  select count(*) from t_09201;
select count(*) from t_09201
 *
ERROR at line 1:
ORA-00942: table or view does not exist

以上是“RMAN 如何恢复 drop purge 的表”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注丸趣 TV 行业资讯频道!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-07-20发表,共计4318字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)
主站蜘蛛池模板: 中文字幕av无码免费一区 | 色妞色视频一区二区三区四区 | 亚洲国产精品成人综合久久久 | 一级成人a毛片免费播放 | 久久国产欧美日韩精品免费 | 美丽的熟妇中文字幕 | 国模冰莲私拍01 | 日日夜干 | 国产一级爱c片免费观看 | 午夜免费片在线观看不卡 | 国产成人免费观看 | 又大又长粗又爽又黄少妇视频 | 久久本道综合色狠狠五月 | 久草热视频 | 亚洲a在线观看 | 免费一区二区三区四区 | 久久久全国免费视频 | 小说区图片区综合区 | 国产精品爱久久久久久久小 | 久久久久久无码av成人影院 | 国内高清久久久久久 | 男人操女人的网站 | 日韩中文字幕视频在线 | 免费看美女的网站 | 日本中文字幕在线观看视频 | 国产亚洲视频在线观看 | 亚洲av不卡无码国产 | 国产精品欧美一区二区在线看 | 午夜精品成人毛片 | 色噜噜亚洲精品中文字幕 | 日本免费在线一区 | 久久不见久久见免费影院www | 色综合久久久久综合体桃花网 | 日韩精品欧美激情国产一区 | 精品亚洲性xxx久久久 | 成人日b视频 | 国产午夜亚洲精品不卡 | 她也啪在线视频精品网站 | 午夜免费观看 | 在线视频欧美日韩 | 国产精品自产拍高潮在线观看 |