{xtype:'numbercolumn',text:'亏盈数量',width:130,dataIndex:'LossOrProfitNum',editor:{xtype:'numberfield',minValue:0,decimalPrecision:2},renderer:function(v...
分类:
Web程序 时间:
2014-08-11 21:05:32
阅读次数:
171
错误的原因是由于磁盘数和冗余层级不匹配:如果创建用来存放OCR和VOTEDISK的ASM磁盘组,那么External、Normal、High三种冗余级别对应的Failgroup个数是1、3、5。也就是说,创建这三种冗余级别的磁盘组至少分别需要1、3、5个ASM磁盘。如果创建用于非OCR和VOTEDI...
分类:
数据库 时间:
2014-08-11 20:34:02
阅读次数:
856
grid.js
Ext.onReady(function() {
var gridStore = new Ext.data.Store({
proxy: new Ext.data.HttpProxy({
url: 'grid.asp'
}),
reader: new Ext.data.JsonReader({
root: 'data',
totalPrope...
分类:
其他好文 时间:
2014-08-11 17:52:52
阅读次数:
226
1、Ext.grid.GridPanel 主要配置项: store:表格的数据集 columns:表格列模式的配置数组,可自动创建ColumnModel列模式 autoExpandColumn:自动充满表格未用空间的列,参数为列id,该id不能为0 stripeRows:表格...
分类:
其他好文 时间:
2014-08-11 17:28:52
阅读次数:
453
Grid Infrastructure共享组件Grid Infrastructure使用两种类型的共享设备来管理集群资源和节点:OCR(Oracle Cluster Registry)和表决磁盘。Oracle 11.2引入一个新的文件,称作Oracle Local Registry(OLR),它只允...
分类:
数据库 时间:
2014-08-11 02:48:01
阅读次数:
439
RAC在Grid Infrastructure安装完以后,我们把注意力转移到集群上的Oracle软件的安装上来。我们看到,Grid Infrasctructure提供了运行RAC的框架,包括集群通讯链接、节点分离、节点成员关系等服务。ASM是Oracle存储数据库的首选方式。RAC利用这些概念并扩展...
分类:
数据库 时间:
2014-08-11 02:47:11
阅读次数:
367
Where's Waldorf?
Given a m by n grid
of letters, ( ),
and a list of words, find the location in the grid at which the word can be found. A word matches a straight, uninterrupted line o...
分类:
其他好文 时间:
2014-08-09 18:42:38
阅读次数:
370
#includechar grid[101][101];int n, m;int dir[8][2] = { {-1, -1}, {-1, 0}, {-1, 1}, { 0, 1}, { 1, 1}, { 1, 0}, { 1, -1}, { 0, -1}};void dfs(int x, int ...
分类:
其他好文 时间:
2014-08-09 11:32:07
阅读次数:
259
Problem Description
I’ve bought an orchard and decide to plant some apple trees on it. The orchard seems like an N * M two-dimensional map. In each grid, I can either plant an apple tree to get one...
分类:
移动开发 时间:
2014-08-08 16:13:06
阅读次数:
281