recover from service 修复备库gap-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 3502425
  • 博文数量: 718
  • 博客积分: 1860
  • 博客等级: 上尉
  • 技术积分: 7790
  • 用 户 组: 普通用户
  • 注册时间: 2008-04-07 08:51
个人简介

偶尔有空上来看看

文章分类

全部博文(718)

文章存档

2024年(4)

2023年(74)

2022年(134)

2021年(238)

2020年(115)

2019年(11)

2018年(9)

2017年(9)

2016年(17)

2015年(7)

2014年(4)

2013年(1)

2012年(11)

2011年(27)

2010年(35)

2009年(11)

2008年(11)

最近访客
相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: oracle

2023-10-27 19:05:34

先来个清日志脚本镇场
  1. sql> begin
  2. for log_cur in ( select group# group_no from v$log )
  3. loop
  4. execute immediate 'alter database clear logfile group '||log_cur.group_no;
  5. end loop;
  6. end;
  7. /

  8. sql> begin
  9. for log_cur in ( select group# group_no from v$standby_log )
  10. loop
  11. execute immediate 'alter database clear logfile group '||log_cur.group_no;
  12. end loop;
  13. end;
  14. /
db version 12.1.0.1 to 21.6 
  1. 备库上

  2. $ rman target /

  3. rman > run {
  4. allocate channel c1 type disk connect '/@';
  5. allocate channel c2 type disk connect '/@';
  6. allocate channel c3 type disk connect '/@';
  7. allocate channel c4 type disk connect '/@';
  8. allocate channel c5 type disk connect '/@';
  9. allocate channel c6 type disk connect '/@';
  10. allocate channel c7 type disk connect '/@';
  11. allocate channel c8 type disk connect '/@';
  12. recover database from service 'ts_pri' section size 32g;
  13. }

  14. 观察进度
  15. select inst_id,sid,serial#,opname, round((sofar/totalwork)*100,2) as "%complete",
  16.  elapsed_seconds, time_remaining
  17. from gv$session_longops
  18. where sofar<>totalwork and totalwork<>0
  19. and sid||serial# in (select sid||serial# from v$session);


参考:2850185.1
阅读(68) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图