ash是非常有效的监控工具之一,1秒抓一次
select max(sample_time)over(),min(sample_time)over() from dba_hist_active_sess_history; --8天
select max(sample_time)over(),min(sample_time)over() from v$active_session_histor...
分类:
其他好文 时间:
2014-11-20 18:52:03
阅读次数:
251
暂时没啥心得,直接上例子。 1 2 3 4 fasd 5 6 25 26 27 28 129 1****130 2****231 3****332 4****433 5****534 6****635 参考:http://yansong.me/2013/01/11/learning-hist...
分类:
Web程序 时间:
2014-11-13 20:36:46
阅读次数:
226
这是一个之前没发现的现象。
同样一段代码:
b=10000;
c=randn(1, b); %产生10000个正态分布的随机数
d=100;
[a,b]=hist(c,d); %平均分成100份
a=a/length(c); %把个数转换成频度
bar(a); ...
分类:
其他好文 时间:
2014-10-10 21:17:44
阅读次数:
230
常用复制:ctrl-shift-c粘贴:ctrl-shift-v补全:tab光标移动到开始位置:ctrl+a光标移动到最后位置:ctrl+e删除此处至末尾所有内容:ctrl+k删除此处至开始所有内容:ctrl+u刷新屏幕:Ctrl+l/L杀死当前任务:Ctrl+c/C较完整显示命令历史列表:hist...
分类:
系统相关 时间:
2014-10-04 18:34:07
阅读次数:
308
Given n non-negative integers representing the histogram's bar height where the width of each bar is 1, find the area of largest rectangle in the hist...
分类:
其他好文 时间:
2014-09-22 02:12:11
阅读次数:
245
经常在巡检OGG日志的时候发现如下警告:
2013-01-18 16:52:56 WARNING OGG-00952 Oracle GoldenGate Manager for Oracle, mgr.prm: Purging log history from OGG.GGS_DDL_HIST older than 2013-01-13 15:52:56.084114: Could not...
分类:
其他好文 时间:
2014-09-16 10:45:30
阅读次数:
217
Given n non-negative integers representing the histogram's bar height where the width of each bar is 1, find the area of largest rectangle in the hist...
分类:
其他好文 时间:
2014-08-22 21:04:59
阅读次数:
168
WebView可直接指定URL显示网页:webView.loadUrl("http://www.baidu.com");WebView可直接装载HTML代码 : webView.loadDataWithBaseURL(baseUrl, html, "text/html", "utf-8", hist...
分类:
Web程序 时间:
2014-08-22 15:55:58
阅读次数:
198
1.把彩***像分成3个图像(cvSplit)2.创建直方图并且分配内存(CvHistogram*hist=cvCreateHist)3.读取图像的直方图,把数据存放在直方图结构体中(cvCapcHist)4.读取直方图结构体中每个值的点数(cvQueryHistValue_1D)5.描点,画图(cvPoint,cvFillConvexPoly)直方图的其它..
分类:
其他好文 时间:
2014-08-14 21:00:09
阅读次数:
400
> which.max(apply(x[c("x1","x2","x3")], 1, sum))49> x$num[which.max(apply(x[c("x1","x2","x3")], 1, sum))][1] 2005138149> hist(x$x1)> plot(x$x1,x$x2)> ...
分类:
其他好文 时间:
2014-08-14 01:15:17
阅读次数:
197