PX Deq: Execution Msg
Occurs when a parallel slave is waiting to be told what to do. This is normally considered an idle event, but can cause excessive CPU
in some cases.
Solution
Reduc...
分类:
其他好文 时间:
2014-08-11 21:38:52
阅读次数:
485
'每页的记录数
dim pagesize
pagesize= "30"
'读出总记录数,总页数,作者注
Dim TotalRecords,TotalPages
SQLstr="Select count(id) As RecordSum From table1"
Set Rs=conn.Execute(SQLstr,0,1)
TotalRecords=Rs("RecordSum")...
分类:
Web程序 时间:
2014-08-11 10:08:31
阅读次数:
257
Buffer nowait: 内存获取数据未等待:99.33%
Buffer hit: 进程内存找到数据 100%
Redo nowait: 日志缓冲区获得数据未等待:100%
Library hit: 找到解析过的SQL:100%
Latch hit进程获得内存结构许可比例:99%
Parse cpu to parse elapsd:解析未等待比例:116%
Non-Parse CPU :sql语句执行时间占总解析时间的比例:97.08%
Execute to parse: SQL重用率:6...
分类:
其他好文 时间:
2014-08-09 15:54:38
阅读次数:
251
-- sql语句耗时百分比declare @tmptb table(id int,name varchar(50),total_worker_time bigint,rate varchar(50),execute_count bigint);with cte1 as(select a.*,t.*f...
分类:
数据库 时间:
2014-08-07 21:52:00
阅读次数:
351
grant execute on dbms_lock to USERNAME; dbms_lock.sleep(time)参数单位为秒 create or replace procedure initdata is num number := 0; begin for ...
分类:
数据库 时间:
2014-08-07 18:42:42
阅读次数:
486
看MSDN:http://msdn.microsoft.com/zh-cn/library/ms187331.aspx语法为:WAITFOR { DELAY 'time_to_pass' | TIME 'time_to_execute' | [ ( receive_statement ...
分类:
数据库 时间:
2014-08-07 12:20:19
阅读次数:
302
定时任务配置分为三个步骤: 1、定义任务2、任务执行策略配置3、启动任务1、定义任务 execute false 2、任务执行策略配置(1)指定重复间隔的定时任务 (2)按周期执行的任务 ...
分类:
编程语言 时间:
2014-08-06 18:17:41
阅读次数:
216
1、权限问题alter routine 编辑或删除存储过程create routine 建立存储过程execute 创建存储过程 2、存储过程相关的一些命令show procedure status\G 查看数据库中有哪些存储过程show procedure status where db = '....
分类:
数据库 时间:
2014-08-06 14:25:01
阅读次数:
185
public class DownloadAction extends ActionSupport{ // 接收文件名 private String filename; @Override public String execute() throws Exceptio...
分类:
其他好文 时间:
2014-08-05 22:13:20
阅读次数:
212
UI界面更新必须在ui线程中 不能在ruanable线程中操作ui 可以发送消息利用handler来更新ui private void load() { LoadDate load = new LoadDate(); load.execute("http://h.hiphotos.baidu.c.....
分类:
移动开发 时间:
2014-08-05 19:03:09
阅读次数:
289