If a project is in trouble, the project manager needs to work to recover it and get the schedule back on track. Hopefully, it's not too late to still ...
分类:
其他好文 时间:
2015-01-07 16:46:47
阅读次数:
135
Recover Binary Search TreeTwo elements of a binary search tree (BST) are swapped by mistake.Recover the tree without changing its structure.Note:A sol...
分类:
其他好文 时间:
2015-01-07 14:40:01
阅读次数:
173
题目:(Tree ,DFS)Two elements of a binary search tree (BST) are swapped by mistake.Recover the tree without changing its structure.Note:A solution using ...
分类:
其他好文 时间:
2015-01-06 02:03:43
阅读次数:
172
Two elements of a binary search tree (BST) are swapped by mistake.Recover the tree without changing its structure.Note:A solution using O(n) space is ...
分类:
其他好文 时间:
2015-01-02 21:07:27
阅读次数:
155
Two elements of a binary search tree (BST) are swapped by mistake.Recover the tree without changing its structure.Note:A solution using O(n) space is ...
分类:
其他好文 时间:
2015-01-02 21:01:15
阅读次数:
184
使用rman进行恢复--undo丢失
restore 把文件还原回去;
recover 利用日志文件重做;
关键性的文件丢失和非关键性的文件丢失(system/undo之外的丢失)
1>
删除undo文件:
[oracle@oracle ~]$ rm /u01/oracle/oradata/jadl10g/undotbs01.dbf
[oracle@oracle ~]$ sqlplu...
分类:
其他好文 时间:
2014-12-27 19:05:41
阅读次数:
229
非关键性数据文件丢失(可以脱机数据文件的丢失):
run{
sql 'alter database datafile
restore datafile
recover datafile
slq 'alter database datafile
}
除了system、undo_tablespace参数后值对应的表空间都可以采用以上的办法恢复。
[oracle@oracle ~...
分类:
其他好文 时间:
2014-12-27 19:01:55
阅读次数:
176
1>只读 ---备份只读 故障 只读 还原有故障的数据文件
2>只读 ---备份只读 可写 故障 还原备份数据文件,重做recover
3>只读 ---备份可写 只读 故障 还原备份数据文件,recover
1>
进入rman,确保是否有备份的文件:
[oracle@oracle ~]$ rman target /
Recovery Manager: Release 10....
分类:
其他好文 时间:
2014-12-25 23:41:07
阅读次数:
237
The current time is 12:00 noon. You want to recover the USERS tablespace
from a failure that occurred at 11:50 a.m. You discover that
the only member of an unarchived redo log group containing inf...
分类:
数据库 时间:
2014-12-25 10:01:47
阅读次数:
264
ORACLE数据库不同故障下的恢复总结1. 非归档模式下丢失或损坏的文件--1.1 数据文件--启动数据库的状态到MOUNT--恢复方法:通过之前创建的数据库完整备份,修复整个数据库,不过备份之后发生的所有修改将丢失;修复数据库之后不需要进行RECOVER操作。(由于没有归档,也无从RECOVER)...
分类:
数据库 时间:
2014-12-25 01:22:26
阅读次数:
326