ChinaUnix.net
相关文章推荐:

rman skip tablespace

我先用rman备份了tablespace t1 表空间t1中建立了些表,table1,table2,table2 然后我删除了tablespace t1 drop tablespace t1 including contents; 然后重新建了表空间t1 再用rman恢复 rman>sql 'alter tablespace t1 offline'; rman>restore tablespace t1; rman>recover tablespace t1; rman>sql 'alter tablespace t1 online'; rman提示恢复成功 然后我看表空间t1下并没有恢复出原来表空间下的表table1,table2,table2 请问我的问...

by qlks - Oracle - 2006-08-10 17:15:27 阅读(1172) 回复(1)

相关讨论

在OEM里把rman_ts表空间删除了,数据文件也删了 然后: SQL> create tablespace rman_ts 2 datafile '/u01/app/oracle/oradata/test/rman_ts.dbf' size 20m; SQL> grant recovery_catalog_owner to rman; [oracle@localhost ~]$ rman catalog rman/rman Recovery Manager: Release 10.2.0.1.0 - Production on 星期二 12月 8 09:00:57 2009 Copyright (c) 1982, 2005, Oracle. All rights reserved. connected to recover...

by comerliang - Oracle - 2009-12-09 23:03:26 阅读(1607) 回复(2)

1 显示当前的配置信息 =========================== 1.01 rman> show all; 1.02 查询rman设置中非默认值: SQL> select name,value from v$rman_configure; 2. 常用的configure选项 =========================== 2.01 保存策略 (retention policy) configure retention policy to recovery window of 3 days; configure retention policy to redundancy 3; configure retention policy clear; 备份策略保持 分为两个...

by cxm.cm - Linux文档专区 - 2009-03-03 16:48:44 阅读(507) 回复(0)

Windows 2000 Server下想实现oracle 9i的rman自动备份; c:\orabak\rman.bat c:\orabak\orabak.bat rman.bat 内容: rman target / cmdfile=c:\orabak\orabak.bat orabak.bat内容: run{ allocate channel c1 type disk; backup incremental level 0 format 'c:\orabak\full0_%u_%T.bak' database; release channel c1; }

by zrhjimmy - Oracle - 2009-02-27 17:48:07 阅读(1360) 回复(1)

偶是初学者,刚看了一些关于oracle备份的文档,感觉写的太复杂了,有没有比较简单的文档可以share一下,就写出rman备份必须的几项设置以及含义就行的那种 先谢过了

by xing-lucky - Oracle - 2008-06-25 10:48:04 阅读(1862) 回复(1)

我在做rman的测试 我分别用sys和system 见了个表, 然后我用rman做了全备份 我删除了这一表 当我用rman恢复时,确发现没有出现那个表 这是怎么回事啊

by nmghailang - Oracle - 2008-04-22 12:22:43 阅读(1854) 回复(4)

rman>backup incremental level=0 format 'd:df_%d_%s_%p.bus' tablespace users,fst ,tools,lyp,aa,llll filesperset=3 执行后生成DF_FIRST_15_1.BUS和DF_FIRST_16_1.BUS,为什么%p参数都是1?%p不是指备份片段的编号吗,既然已经生成了两个文件,怎么编号都是1?

by china286 - Oracle - 2005-11-24 10:59:07 阅读(977) 回复(0)

rman target internal/oracle@his catalog rman/rman@rman 报错: error from target database: ORA-01031: insufficient privileges

by tttsjg_cn - Oracle - 2004-09-08 08:38:35 阅读(830) 回复(1)

怎么用rman 做备份. 有没有着方面的中文资料,谢谢

by sharkbing - Oracle - 2003-04-18 14:15:51 阅读(973) 回复(1)

上大学就没把数据库当回事,其实也是不爱好学这个,但是毕业了,找了一份oracle底层开发的工作,那就不得不学习oracle了,以后会慢慢记录我学习oracle的过程,现在我的数据库水平就是知道create,delete,insert等这些入门也算不上的sql语句了,今天老大说让我创建表空间100g,该表空间下有两个schema,每个schema下有100张表,其中要有10张表每张7g数据,
创建表空间语法:

by suoxin117 - Oracle - 2011-12-21 08:44:00 阅读(751) 回复(0)