em的一些脚本-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 3503170
  • 博文数量: 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

2012-01-19 11:44:00

通过em调用rman执行备份,自动生成的脚本
 
  1. backup device type disk tag '%tag' database;
  2. backup device type disk tag '%tag' archivelog all not backed up delete all input;
  3. run {
  4. allocate channel oem_backup_disk1 type disk format '%u' maxpiecesize 1000 g;
  5. backup tag '%tag' current controlfile;
  6. release channel oem_backup_disk1;
  7. }
  8. allocate channel for maintenance type disk;
  9. delete noprompt obsolete device type disk;
  10. release channel;

 

查看备份信息,通过sql_trace=true 抓取到的脚本

 

  1. select b.session_key, b.session_recid, b.session_stamp, b.command_id,
  2.   b.status, b.start_time, b.time_taken_display, b.input_type,
  3.   b.output_device_type, b.input_bytes_display, b.output_bytes_display,
  4.   b.output_bytes_per_sec_display
  5. from
  6.  v$rman_backup_job_details b where ( b.start_time > (sysdate - 30) ) order
  7.   by b.start_time

 

结果如下图所示:

 

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