这篇主要介绍的是RAC 环境下的RMAN 备份。 关于Oracle 备份与恢复的一些理论知识参考我的Blog: Oracle 备份 与 恢复 概述 http://blog.csdn.net/tianlesoftware/archive/2010/04/16/5490733.aspx一. RAC 归档...
分类:
其他好文 时间:
2014-08-03 22:56:06
阅读次数:
413
问题描述:Given a sorted linked list, delete all nodes that have duplicate numbers, leaving onlydistinctnumbers from the original list.For example,Given1->...
分类:
其他好文 时间:
2014-08-02 01:33:12
阅读次数:
249
Given a set of distinct integers, S, return all possible subsets.
Note:
Elements in a subset must be in non-descending order.The solution set must not contain duplicate subsets.
For exa...
分类:
其他好文 时间:
2014-08-01 23:18:42
阅读次数:
246
[oracle@server1ORACLE]$rmantarget/RecoveryManager:Release10.2.0.5.0-ProductiononThuJul3113:51:402014Copyright(c)1982,2007,Oracle.Allrightsreserved.connectedtotargetdatabase(notstarted)RMAN>setdbid1619708557executingcommand:SETDBIDRMAN>startupnomountOr..
分类:
其他好文 时间:
2014-07-31 21:12:17
阅读次数:
408
今天手贱给自己挖了个坑,由于工程中一些文件是后台的小伙伴写的C/C++文件,所以我一次性全部导入了,但是编译时出现了duplicate symbol _main in: A.o和B.o的编译错误。...
分类:
移动开发 时间:
2014-07-30 23:53:55
阅读次数:
315
oracle标准版、企业版区别,Oracle 10g标准版在中虽然支持RAC,但oracle是有限制的,如要在Oracle 10g标准版中用RAC,那么只能使用Oracle Clusterware(不支持其它任何第三方群集软件),同时必须使用ASM来做数据文件的存储管理(其它任何第三方的卷管理和文件系统都不支持)。
如果要安装另外一个数据库作为RMAN repository 或者OEM Grid Control repository那么不需要另外付费了。
另外如果你购买了最低级的那个Oracle 10gSt...
分类:
数据库 时间:
2014-07-29 17:59:22
阅读次数:
376
Windows 2008下 rman backup scirpts(备份脚本)--已经在生产环境下通过验证...
很早之前写的一个小文档没事就发上来:刚接手一个小库准备rman全备一下结果报错说有一个坏块无法备份查看alert日志发现system表空间存在一个坏块Errors in file /u01/app/oracle/admin/sms/bdump/sms_j001_19329.trc:ORA-01578...
分类:
其他好文 时间:
2014-07-29 10:54:16
阅读次数:
296
内存组件
Large Pool-大池是SGA的一个可选组件,通常用于共享服务器模式(MTS)、 并行计算或
RMAN的备份恢复等操作。
Java Pool-Java池主要用于JVM等Java选件。
Streams Pool-Streams pool是Oracle10g引入的概念,为Oracle的Streams功能所使用,如果不定义该参数,这部分内存将从Shread Pool中分配
对于SGA各部分内存分配,可以从数据库的视图中查询得到:
17:46:03 sys@felix SQL>selec...
分类:
数据库 时间:
2014-07-28 00:14:59
阅读次数:
437
蛮常见一道题目。
思路:
1:排序,按顺序遍历两个数之和twoSum,
2: 二分查找 (0 - twoSum)看是否存在
这题最容易错的地方是must not contain duplicate triplets,所以遍历的这时候要用一个数字记录最后一个遍历的数字是,避免重复。
#include
#include
#include
using namespace s...
分类:
其他好文 时间:
2014-07-27 11:26:22
阅读次数:
260