oracle 11g GRID 中 关于 OLR 需要知道的一些内容
1.检查olr 的状态:
[root@vmrac1 ~]# ocrcheck -local
Status of Oracle Local Registry is as follows :
Version : 3
Total...
分类:
数据库 时间:
2014-06-22 21:43:05
阅读次数:
340
Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum.
For example:
Given the below binary tree and sum...
分类:
其他好文 时间:
2014-06-22 20:59:24
阅读次数:
227
1在lvs 服务器上安装nrpe客户端:1.1,rpm方式安装nrpe客户端下载地址:http://download.csdn.net/detail/mchdba/7493875[root@localhost nagios]# ll
总计 768
-rw-r--r-- 1 root root 713389 12-16 12:08 nagios-plugins-1.4.11-1.x86_64.rp...
分类:
移动开发 时间:
2014-06-22 20:19:40
阅读次数:
330
在Android平台下做开发,adb总是需要使用到的,同时,因为linux没有windows这样操作傻瓜化,有些东西还是需要自行设置的,否则将会连接不上。
关于这些内容,google也有一定的描述,可以参考http://developer.android.com/tools/device.html
1. 确保设备已经连接正常
首先需要取得root权限,这个没啥说的。然后用...
分类:
移动开发 时间:
2014-06-22 19:47:37
阅读次数:
258
今天是2014-06-18,在复制数据的时候出现如下错误:
RMAN-05537: DUPLICATE without TARGET connection when auxiliary instance is started with spfile cannot use SPFILE clause
操作过程如下:
[oracle@dg1 dbs]$ rman target sys/root@...
分类:
其他好文 时间:
2014-06-22 19:13:14
阅读次数:
306
题目链接:POJ 1573 Robot Motion
一个小模拟,很简单,按照提示一步步走就是了
#include
#include
#include
#include
#include
using namespace std;
int n = 0,m = 0,st = 0;
int map[10][20],dis[10][20];;...
分类:
其他好文 时间:
2014-06-22 18:14:23
阅读次数:
182
phpmyadmin用root无法登录(用户名和密码都正确)
解决:
看mysql客户端是否可以登录(我遇到的是不能登录),若无法登录就更改root密码,改好后就可以登录了。phpmyadmin刷新页面后登录。
phpmyadmin进入页面后无法浏览数据库里面的内容,左边会出现错误 #1146 - Table 'phpmyadmin.pma_recent' doesn't exist...
分类:
Web程序 时间:
2014-06-22 15:59:38
阅读次数:
239
linux下Oracle11g RAC搭建(九)
八、创建ASM仓储
同样在图形化界面操作
[root@node1 ~]# su - grid
[grid@node1 ~]$ asmca
//创建两个磁盘组:数据文件磁盘组和快速恢复区磁盘组
[grid@node1 ~]$ cd /u01/11.2.0/grid/bin
//...
分类:
数据库 时间:
2014-06-22 14:03:48
阅读次数:
274
题目:
Given a binary tree containing digits from 0-9 only, each root-to-leaf
path could represent a number.
An example is the root-to-leaf path 1->2->3 which represents the number 123.
Find...
分类:
其他好文 时间:
2014-06-22 08:30:24
阅读次数:
236
Given a binary tree and a sum, find all root-to-leaf paths where each path's sum equals the given sum.
For example:
Given the below binary tree and sum = 22,
5
/ ...
分类:
其他好文 时间:
2014-06-21 22:44:58
阅读次数:
266