验证安装在两节点上都要操作,以grid用户操作 1、检查CRS状态 [root@orcl1 ~]# su - grid [grid@orcl1 ~]$ crsctl check crs CRS-4638: Oracle High Availability Services is online CRS...
分类:
数据库 时间:
2015-06-23 17:39:20
阅读次数:
160
在Oracle11gR2的asmcmd中,碰到过这样的错误。ASMCMD-08102:noconnectiontoASM一般是因为ORACLE_SID或者ORACLE_HOME设置不正确所致。exportORACLE_SID=+ASMexportORACLE_HOME=/u01/app/grid/product/11.2.0/grid/(后面的这个路径下面要有/perl/bin/perl,使用asmcmd命令时会去..
分类:
其他好文 时间:
2015-06-23 15:58:40
阅读次数:
102
环境:Oracle11gR2节点:c1、c2共享设备:SAN+ASM现象:c2启动完全正常,c1启动出现:ORA-01078:failureinprocessingsystemparametersORA-01565:errorinidentifyingfile‘+ASM/orcl/spfileorcl.ora‘ORA-17503:ksfdopn:2Failedtoopenfile+ASM/orcl/spfileorcl.oraORA-15056:addit..
分类:
数据库 时间:
2015-06-23 15:58:28
阅读次数:
233
题目:字一个由垂直的街道构成的城市里,居住着很多朋友(房子都在交叉路口);
现在他们想办一个聚会,问在那个地方办可以使得所有人走的路径和最小。
分析:中位数。本题中的距离为哈密尔特距离dist(,)= |x1-x2|+|y1-y2|。
设地点定在,则有sumdist = sum(|x-xi|+|y-yi|)= sum(|x-xi|)+sum(y...
分类:
其他好文 时间:
2015-06-22 15:01:39
阅读次数:
161
Grid顾名思义就是“网格”,它的子控件被放在一个一个实现定义好的小格子里面,整齐配列。 Grid和其他各个Panel比较起来,功能最多也最为复杂。 UniformGrid 是Grid的简化版本,每个单元格的大小相同,不需要定义行列集合。每个单元格始终具有相同的大小,每个单元格只能容纳一个控件,将自...
var grid = this.getGrid();Ext.apply(grid.store.proxy.extraParams, {参数名: 参数值});grid.store.load();
分类:
其他好文 时间:
2015-06-22 08:44:07
阅读次数:
117
http://www.soapui.org/about-soapui-pro/working-with-soapui-pro.htmlDataSource type dropdown – lets you pick which external source you would use to pul...
分类:
数据库 时间:
2015-06-21 22:13:24
阅读次数:
168
Window、Grid、TextBox、Button等,都叫元素xaml文档中,用来定义标签,标签可以用来描述元素或元素的属性,如: Window是元素,Resources是Window的一个属性标签内容可以包含其他元素的标签,如 ...
var model = grid.getSelectionModel();
model.selectAll();//选择所有行
model.selectFirstRow();//选择第一行
model.selectLastRow([flag]);//选择最后一行,flag为正的话保持当前已经选中的行数,不填则默认false
model.selectNext();//选择下一行
...
分类:
其他好文 时间:
2015-06-19 10:32:32
阅读次数:
240
前台
js
$(function() {
$('#dg').datagrid({
height:'400px',
pageNumber:1,
title:'日志列表',
pageList:[10,20,30,40,50],
striped: true,
pagination:true,
rownumbers: true,
singleSele...
分类:
编程语言 时间:
2015-06-18 19:43:58
阅读次数:
97