今天刚刚搭建好的10.2.0.4RAC,关机重启之后起不来了,很高兴,开始填坑:
[oracle@rac2 ~]$ crs_stat -t -v
Name Type R/RA F/FT Target State Host
-------------------------------------------------...
分类:
其他好文 时间:
2015-12-22 06:32:21
阅读次数:
141
通过这次投票我学到了很多。很久之前我几乎没在CSDN写过个人的感触这种东西,因为感觉这是一个开放的平台,并不想去像流水账一样去记录自己的琐事,至于为何会写这一篇后文会有提到。因此这篇文章也不仅仅是投票的总结,也包含了很久之前的事情。忽然想到如果评委们看到了这篇文章,发现我才大三,会不会给我扣很多分叻;不过还是得写,因为难得在线上总结一次,当然得真诚。进了大学才知道编程这东西,军训结束就加入了社联科技...
分类:
Web程序 时间:
2015-12-22 06:29:53
阅读次数:
156
题目:Given a binary tree, return thevertical ordertraversal of its nodes' values. (ie, from top to bottom, column by column).If two nodes are in the sam...
分类:
其他好文 时间:
2015-12-22 06:31:23
阅读次数:
193
奇数行和偶数行合并为一行:Like:Sequence number: 5398Sequence name: Glyma.16G123500.1Sequence number: 5399Sequence name: Glyma.16G169500.1Sequence number: 5400Seque...
分类:
其他好文 时间:
2015-12-22 06:30:41
阅读次数:
214
/* HDU 2090 算菜价 --- 水题 */#include int main(){ char s[105]; double a, b, sum = 0; while (scanf("%s", s)==1){ scanf("%lf%lf", &a, &b); ...
分类:
其他好文 时间:
2015-12-22 06:29:13
阅读次数:
140
"深入浅出nodejs 朴灵" 例子 c/c++扩展模块hello.cc#include #include using namespace v8;Handle SayHello(const Arguments& args){ HandleScope scope; return scope.Close...
分类:
编程语言 时间:
2015-12-22 06:28:41
阅读次数:
358
The combineReducers function we used in previous post:const todoApp = combineReducers({ todos, visibilityFilter});It accepts and object as agruement.....
分类:
其他好文 时间:
2015-12-22 06:30:09
阅读次数:
201
Previous, we do composition with objects:const todoApp = (state = {}, action) => { return { todos: todos( state.todos, action ), v...
分类:
其他好文 时间:
2015-12-22 06:28:30
阅读次数:
186
/* HDU 2091 空心三角形 --- 水题 */#include int main(){ int kase = 0; char ch; int h, t; //h表示高 while (scanf("%c", &ch) == 1 && ch != '@'){ ...
分类:
其他好文 时间:
2015-12-22 06:29:21
阅读次数:
144
作者郑也夫,在罗辑思维中几次提到,也算是名声远扬了。查了一下作者履历,在美国拿过硕士学位,人大教授,混得还算不错,但从来不申请科研经费,真不知道他的学生都是怎么过日子的。由于长期容忍这种人的存在,我对人大的恶劣印象稍微改观了一些。但又查了一下,13年他就退休且由于长期坚持拆庙而未被返聘,对于人大的印...
分类:
其他好文 时间:
2015-12-22 06:29:48
阅读次数:
135
北京市东花市北里20号楼6单元501室Room 501 ,Unit 6,Building 20 North Donghuashi Residential Chongwen District BeiJing City 我给加上了 崇文区 ---------------- 请看相关资料 翻译原则:先小后...
分类:
其他好文 时间:
2015-12-22 06:29:27
阅读次数:
254
install Polymer and explore creating our first custom element: bower install polymerindex.html: Polymer include webcomponents-list.j...
分类:
其他好文 时间:
2015-12-22 06:26:27
阅读次数:
172
其实defaultdict 就是一个字典,只不过python自动的为它的键赋了一个初始值。这也就是说,你不显示的为字典的键赋初值python不会报错,看下实际例子。比如你想计算频率frequencies = {}for word in wordlist: frequencies[word] +...
分类:
编程语言 时间:
2015-12-22 06:27:05
阅读次数:
142
OSCH是Oracle SQL Connector for Hadoop的缩写,Oracle出品的大数据连接器的一个组件本文介绍的就是如何使用OSCH从Oracle数据库直接访问Hive表前提1:在Oracle数据库端,部署好HDFS客户端与OSCH软件,设置好环境变量 #JAVA export J...
分类:
数据库 时间:
2015-12-22 06:26:45
阅读次数:
442
LeetCode Number of Islands II
分类:
其他好文 时间:
2015-12-22 06:27:41
阅读次数:
146