有人问这样的sql该怎么实现:
表数据和结构
CODE NAME B01 S01 B02 S02
1 张三 数学 80
1 张三 语文 75
2 王五 数学 70
2 王五
3 李四 数学 50
3 李四 语文 88
希望查询出如下结果:
CODE SUM_STR(NAME) B01 SUM_STR(S01) B02 SUM_STR(S02)
1 张三 数学 80 语文 75
2 王五 数学 70
3 李四 数学 50 语文 88
这个问题可以采用自定义的聚集函数来实现:
create
or
replace
type strcat_type
as
object (
cat_string
varchar2
(
4000
),
static
function
ODCIAggregateInitialize(cs_ctx
In
Out strcat_type)
return
number
,
member
function
ODCIAggregateIterate(self
In
Out strcat_type,value
in
varchar2
)
return
number
,
member
function
ODCIAggregateMerge(self
In
Out strcat_type,ctx2
In
Out strcat_type)
return
number
,
member
function
ODCIAggregateTerminate(self
In
Out strcat_type,returnValue Out
varchar2
,flags
in
number
)
return
number
)
/
------------------------------------
create
or
replace
type body strcat_type
is
static
function
ODCIAggregateInitialize(cs_ctx
IN
OUT strcat_type)
return
number
is
begin
cs_ctx :
=
strcat_type(
null
);
return
ODCIConst.Success;
end
;
member
function
ODCIAggregateIterate(self
IN
OUT strcat_type,
value
IN
varchar2
)
return
number
is
begin
if
self.cat_string
is
null
then
self.cat_string :
=
value;
end
if
;
return
ODCIConst.Success;
end
;
member
function
ODCIAggregateTerminate(self
IN
Out strcat_type,
returnValue OUT
varchar2
,
flags
IN
number
)
return
number
is
begin
returnValue :
=
self.cat_string;
return
ODCIConst.Success;
end
;
member
function
ODCIAggregateMerge(self
IN
OUT strcat_type,
ctx2
IN
Out strcat_type)
return
number
is
begin
if self.cat_string is null then
self.cat_string := ctx2.cat_string;
end if;
return
ODCIConst.Success;
end
;
end
;
/
-------------------
CREATE
OR
REPLACE
FUNCTION
sum_str(input
varchar2
)
RETURN
varchar2
PARALLEL_ENABLE AGGREGATE USING strcat_type;
/
-------最后查询语句:
select
code,sum_str(name), sum_str(b01) b01,sum_str(s01) ,sum_str(b02) b02,sum_str(s02)
from
javaeye
group
by
code
order
by
code
posted @
2009-01-05 21:55 kebo 阅读(966) |
评论 (4) |
编辑 收藏
定义标注的样式,这个决定标注显示的方式,必须定义好
1 $package("com.bct.map");
2 com.bct.map.EncoderMarkerStyle = {
3 'bigEncoder':{
4 graphicWidth:24,
5 graphicHeight : 24,
6 graphicXOffset : -12,
7 graphicYOffset : -24,
8 externalGraphic : "scripts/map/img/channel2.png"
9 },
10 'smallEncoder':{
11 graphicWidth:16,
12 graphicHeight : 16,
13 graphicXOffset : -8,
14 graphicYOffset : -16,
15 externalGraphic : "scripts/map/img/channel.gif"
16 },
17 'selectStyle':{
18 pointerEvents: "visiblePainted",
19 border:"border:25 outset #ff88ff",
20 cursor: "pointer",
21 graphicWidth:24,
22 graphicHeight : 24,
23 graphicXOffset : -12,
24 graphicYOffset : -24,
25 externalGraphic : "scripts/map/img/channel2.png"
26 },
27 styleMap: new OpenLayers.StyleMap({
28 "select": new OpenLayers.Style({pointRadius: 24})
29 })
30 }
marker层,扩展vector层,通过point和style达到marker的效果
1 $package("com.bct.map");
2 $import("com.bct.map.EncoderMarkerStyle");
3 com.bct.map.MarkerVectorLayer = OpenLayers.Class(OpenLayers.Layer.Vector,{
4 /**
5 * parameters
6 * attribute filer对象
7 */
8 getFeatureByAttribute :function(attributes){
9 var feature = null;
10 for(var i=0;i<this.features.length; ++i){
11 var attri = this.features[i].attributes;
12 var find = false;
13 for(var j in attributes){
14 if(attributes[j] == attri[j]){
15 find = true;
16 }
17 }
18 if(find){
19 return this.features[i];
20 }
21 }
22
23 },
24 addEncorderFeature:function(encNode,location){
25 if(encNode&&this.repetitiveCheck(encNode.id)){
26 return;
27 }
28 var attributes = OpenLayers.Util.extend({}, encNode.attributes);
29 var enc_point = new OpenLayers.Geometry.Point(location.lon,location.lat);
30 var enc_Feature = new OpenLayers.Feature.Vector(enc_point,attributes,com.bct.map.EncoderMarkerStyle['smallEncoder']);
31 this.addFeatures([enc_Feature]);
32 if(encNode.attributes['lon']&&encNode.attributes['lat']&&encNode.attributes['lon'].length>0){
33 return;
34 }
35 this.updateChannel(encNode.id,location.lon,location.lat);
36 },
37 addDeptFeature:function(deptNode,location){
38 if(deptNode&&this.repetitiveCheck(deptNode.id)){
39 return;
40 }
41 var attributes = OpenLayers.Util.extend({}, deptNode.attributes);
42 var enc_point = new OpenLayers.Geometry.Point(location.lon,location.lat);
43 var enc_Feature = new OpenLayers.Feature.Vector(enc_point,attributes,com.bct.map.EncoderMarkerStyle['smallEncoder']);
44
45 this.addFeatures([enc_Feature]);
46
47 },
48 repetitiveCheck:function(entity_id){
49 if(this.getFeatureByAttribute({id:entity_id})){
50 return true;
51 }
52 return false;
53 },
54 updateChannel:function(channel_id,lon,lat){
55 Ext.Ajax.request({
56 url: 'deviceVideoEncoder.do?method=updateLonlat&id='+channel_id+"&lon="+lon+"&lat="+lat
57 });
58 },
59 channelMarkerClick:function() {
60 var features = this.selectedFeatures;
61 if(features.length >=0&&features[0]) {
62 feature = features[0];
63 var treeNodeAttribute = feature.attributes;
64 var vedioPopForm = new Ext.FormPanel({
65 frame:true,
66 labelAlign: 'top',
67 bodyStyle:'padding:5px',
68 width: 400,
69 height:200,
70 layout: 'fit',
71 items:[{
72 xtype:'fieldset',
73 title: '摄像头信息',
74 autoHeight:true,
75 autoWidth:true,
76 html:"<p><font color='red' size='2'>名称:"+treeNodeAttribute['text']
77 +"</font></p><p><font color='red' size='2'>通道号:"+treeNodeAttribute['channelNumber']
78 +"</font></p><p><font color='red' size='2'>设备名称:"+treeNodeAttribute['deviceunitName']
79 +"</font></p><p><font color='red' size='2'>所属部门:"+treeNodeAttribute['deptName']
80 +"</font></p><p><font color='red' size='2'>经纬度:"+treeNodeAttribute['lon']+","+treeNodeAttribute['lat']
81 }]
82 });
83 var win = new Ext.Window({
84 width : 420,
85 height: 220,
86 items : vedioPopForm
87 });
88 win.show();
89 }
90 },
91 cartoonFeature :function(feature){
92 this.drawFeature(feature,com.bct.map.EncoderMarkerStyle['bigEncoder']);
93 var runner = new Ext.util.TaskRunner(1000);
94 var task = {
95 run:this.drawFeature,
96 scope:this,
97 args:[feature,com.bct.map.EncoderMarkerStyle['smallEncoder']],
98 interval: 1000
99 }
100 runner.start(task);
101 },
102 removeSelectFeature:function(){
103 var features = this.selectedFeatures;
104 for(var i=features.length-1; i>=0; i--) {
105 feature = features[i];
106 this.updateChannel(feature.attributes['id'],"","");
107 }
108 this.destroyFeatures(this.selectedFeatures);
109 },
110 monitorSelectFeature:function(){
111 var features = this.selectedFeatures;
112 if(features.length >=0&&features[0]) {
113 feature = features[0];
114 var treeNodeAttribute = feature.attributes;
115 var objId="mapAVShow"+treeNodeAttribute['id'];
116 var win = new Ext.Window({
117 width : 420,
118 height: 420,
119 html:"<div id='mapEncoder' width='100%' height='100%'><object width='100%' height='100%' id='"+objId+"' classid='clsid:574B47E8-A366-4AB9-B2EA-57F145CA3780'></object></div>"
120 });
121 win.show();
122 Ext.lib.Ajax.request('GET','channel.do?method=getSiteId&accept=json&id='+treeNodeAttribute['id'],
123 {success: function(o){
124 var encoderObj;
125 encoderObj=Ext.util.JSON.decode(o.responseText);
126 $import("com.bct.monitor.mapAVShow");
127 var avshowObj=document.getElementById(objId);
128 var avshow=new com.bct.monitor.mapAVShow(avshowObj,
129 encoderObj[0].siteId,encoderObj[0].enCoderId,encoderObj[0].diveceUnitTypeId,'');
130 avshow.startVideo();
131 win.on("destroy",function del(){
132 avshow.stopVideo();
133 });
134 }
135 });
136 }
137 }
138 });
posted @
2008-09-04 14:12 kebo 阅读(3938) |
评论 (1) |
编辑 收藏
在项目进入性能测试阶段,终于爆发了sql运行缓慢,系统吞吐量下降,甚至一度出现oracle服务器cpu100%的情况。具体开发和测试人员报告情况,开始介入处理。
具体查找性能缓慢的过程略除。
发现一条sql运行缓慢。通过跟踪发现一下信息
select alias_p2.pendingid, alias_p2.workitemid, alias_p2.operationid, alias_p2.operationkey,
2 alias_p2.title, alias_p2.sendercn, alias_p2.operatedes, alias_p2.pendingstate,
3 alias_p2.parameter, alias_p2.createdate, alias_p2.deptname, alias_p2.completeddate ,
4 alias_p2.openstate , alias_p2.name, alias_p2.processinstanceid, alias_p2.asset
5 from ( select alias_p1.pendingid, alias_p1.workitemid, alias_p1.operationid,
6 alias_p1.operationkey, alias_p1.title, alias_p1.sendercn, alias_p1.operatedes,
7 alias_p1.pendingstate, alias_p1.parameter, alias_p1.createdate, alias_p1.deptname,
8 alias_p1.completeddate , alias_p1.openstate , alias_p1.name, alias_p1.processinstanceid ,
9 alias_p1.asset , rownum rn from(select alias_p.pendingid, alias_p.workitemid, alias_p.operationid,
10 alias_p.operationkey, alias_p.title, alias_p.sendercn, alias_p.operatedes, alias_p.pendingstate,
11 alias_p.parameter, alias_p.createdate, alias_p.deptname, alias_p.completeddate , alias_p.openstate ,
12 pd.name, w.processinstanceid , eam_db.concatassetname( alias_p.operationkey, alias_p.operationid )
13 asset from WF_Pending alias_p, WF_WorkItem w, WF_ProcessDefinition pd, WF_ProcessInstance pi
14 where alias_p.ownerid='qinxue' and alias_p.pendingstate in(0,3,5,7,9,10,11,12)
15 and (alias_p.deptname='
审控部信息处
' or alias_p.deptname='' or alias_p.deptname is null)
16 and w.workitemid = alias_p.workitemid and pi.processinstanceid = w.processinstanceid
17 and pi.completeddate is null and pd.processdefinitionid = w.processdefinitionid order by alias_p.createdate desc) alias_p1 where rownum <=10)
alias_p2 where rn>=1;
已选择
10
行。
执行计划
----------------------------------------------------------
0 SELECT STATEMENT Optimizer=CHOOSE (Cost=10 Card=1 Bytes=2507
)
1 0 VIEW (Cost=10 Card=1 Bytes=2507)
2 1 COUNT (STOPKEY)
3 2 VIEW (Cost=10 Card=1 Bytes=2494)
4 3 SORT (ORDER BY STOPKEY) (Cost=10 Card=1 Bytes=167)
5 4 NESTED LOOPS (Cost=8 Card=1 Bytes=167)
6 5 NESTED LOOPS (Cost=7 Card=1 Bytes=162)
7 6 NESTED LOOPS (Cost=6 Card=1 Bytes=134)
8 7 TABLE ACCESS (FULL) OF 'WF_PENDING' (Cost=5
Card=1 Bytes=111)
9 7 TABLE ACCESS (BY INDEX ROWID) OF 'WF_WORKITE
M' (Cost=1 Card=3 Bytes=69)
10 9 INDEX (UNIQUE SCAN) OF 'SYS_C003694' (UNIQ
UE)
11 6 TABLE ACCESS (BY INDEX ROWID) OF 'WF_PROCESSDE
FINITION' (Cost=1 Card=1 Bytes=28)
12 11 INDEX (UNIQUE SCAN) OF 'SYS_C003684' (UNIQUE
)
13 5 TABLE ACCESS (BY INDEX ROWID) OF 'WF_PROCESSINST
ANCE' (Cost=1 Card=1 Bytes=5)
14 13 INDEX (UNIQUE SCAN) OF 'SYS_C003662' (UNIQUE)
统计信息
----------------------------------------------------------
314 recursive calls
0 db block gets
29433 consistent gets
0 physical reads
0 redo size
2153 bytes sent via SQL*Net to client
372 bytes received via SQL*Net from client
2 SQL*Net roundtrips to/from client
101 sorts (memory)
0 sorts (disk)
10 rows processed
其中一致读达到近3万次,关联调用出现314次。排序数值也非常多,显然第一目标是把这两个数据降下来。
通过进一步的分析。发现出现这些问题的主要原因是调用eam_db.concatassetname( alias_p.operationkey, alias_p.operationid )这个包。
开始考虑直接在sql外层做关联,不用function来实现。利用聚集函数来合并数据。
着手建立:
聚集函数: CREATE OR REPLACE FUNCTION F_ASSETLINK(P_STR VARCHAR2) RETURN VARCHAR2
AGGREGATE USING asset_link;
----------------------
创建type:CREATE OR REPLACE TYPE ASSET_LINK AS OBJECT (
STR VARCHAR2(30000),
STATIC FUNCTION ODCIAGGREGATEINITIALIZE(SCTX IN OUT ASSET_LINK) RETURN NUMBER,
MEMBER FUNCTION ODCIAGGREGATEITERATE(SELF IN OUT ASSET_LINK, VALUE IN VARCHAR2) RETURN NUMBER,
MEMBER FUNCTION ODCIAGGREGATETERMINATE(SELF IN ASSET_LINK, RETURNVALUE OUT VARCHAR2, FLAGS IN NUMBER) RETURN NUMBER,
MEMBER FUNCTION ODCIAGGREGATEMERGE(SELF IN OUT ASSET_LINK, CTX2 IN ASSET_LINK) RETURN NUMBER
)
------------------------------------------------------
创建type body:CREATE OR REPLACE TYPE BODY ASSET_LINK IS
STATIC FUNCTION ODCIAGGREGATEINITIALIZE(SCTX IN OUT ASSET_LINK) RETURN NUMBER IS
BEGIN
SCTX := ASSET_LINK(NULL);
RETURN ODCICONST.SUCCESS;
END;
MEMBER FUNCTION ODCIAGGREGATEITERATE(SELF IN OUT ASSET_LINK, VALUE IN VARCHAR2) RETURN NUMBER IS
BEGIN
SELF.STR := SELF.STR ||','|| VALUE;
RETURN ODCICONST.SUCCESS;
END;
MEMBER FUNCTION ODCIAGGREGATETERMINATE(SELF IN ASSET_LINK, RETURNVALUE OUT VARCHAR2, FLAGS IN NUMBER) RETURN NUMBER IS
BEGIN
RETURNVALUE := SELF.STR;
RETURN ODCICONST.SUCCESS;
END;
MEMBER FUNCTION ODCIAGGREGATEMERGE(SELF IN OUT ASSET_LINK, CTX2 IN ASSET_LINK) RETURN NUMBER IS
BEGIN
NULL;
RETURN ODCICONST.SUCCESS;
END;
END;
调整sql如下:
select alias_p.pendingid, alias_p.workitemid, alias_p.operationid,
alias_p.operationkey, alias_p.title, alias_p.sendercn, alias_p.operatedes, alias_p.pendingstate,
alias_p.parameter, alias_p.createdate, alias_p.deptname, alias_p.completeddate , alias_p.openstate ,
pd.name, w.processinstanceid
--,T.ASSETCLASS3 ASSET
,f_assetlink(d3.typename) ASSET
--,eam_db.concatassetname( alias_p.operationkey, alias_p.operationid ) asset
from WF_Pending alias_p, WF_WorkItem w,
WF_ProcessDefinition pd, WF_ProcessInstance pi
, tb_asset_dizhiyihao T,dic_app_wfconfig wfc,dic_app_assettype3 d3
where alias_p.ownerid='qinxue'
and alias_p.pendingstate in(0,3,5,7,9,10,11,12)
and (alias_p.deptname='审控部信息处' or alias_p.deptname='' or alias_p.deptname is null)
and w.workitemid = alias_p.workitemid
and pi.processinstanceid = w.processinstanceid
and pi.completeddate is null
and pd.processdefinitionid = w.processdefinitionid
AND t.pk_businessid = alias_p.operationid
and alias_p.operationkey = wfc.memo_1
and wfc.wfconfig_code = t.wfconfig_code
and t.assetclass3 = d3.assettype3_id
group by alias_p.pendingid, alias_p.workitemid, alias_p.operationid,
alias_p.operationkey, alias_p.title, alias_p.sendercn, alias_p.operatedes, alias_p.pendingstate,
alias_p.parameter, alias_p.createdate, alias_p.deptname, alias_p.completeddate , alias_p.openstate ,
pd.name, w.processinstanceid
order by alias_p.createdate desc
得到统计数据如下:
C:\Documents and Settings\ibm>sqlplus /nolog
SQL*Plus: Release 10.2.0.1.0 - Production on 星期一 9月 10 19:27:33 2007
Copyright (c) 1982, 2005, Oracle. All rights reserved.
SQL> conn jic/jic@name
已连接。
SQL> set autotrace traceonly
SQL> select alias_p.pendingid, alias_p.workitemid, alias_p.operationid,
2 alias_p.operationkey, alias_p.title, alias_p.sendercn, alias_p.operatedes, alias_p.pendingstate,
3 alias_p.parameter, alias_p.createdate, alias_p.deptname, alias_p.completeddate , alias_p.openstate ,
4 pd.name, w.processinstanceid
5 --,T.ASSETCLASS3 ASSET
6 ,f_assetlink(d3.typename) ASSET
7 --,eam_db.concatassetname( alias_p.operationkey, alias_p.operationid ) asset
8 from WF_Pending alias_p, WF_WorkItem w,
9 WF_ProcessDefinition pd, WF_ProcessInstance pi
10 , tb_asset_dizhiyihao T,dic_app_wfconfig wfc,dic_app_assettype3 d3
11 where alias_p.ownerid='qinxue'
12 and alias_p.pendingstate in(0,3,5,7,9,10,11,12)
13 and (alias_p.deptname='审控部信息处' or alias_p.deptname='' or alias_p.deptname is null)
14 and w.workitemid = alias_p.workitemid
15 and pi.processinstanceid = w.processinstanceid
16 and pi.completeddate is null
17 and pd.processdefinitionid = w.processdefinitionid
18 AND t.pk_businessid = alias_p.operationid
19 and alias_p.operationkey = wfc.memo_1
20 and wfc.wfconfig_code = t.wfconfig_code
21 and t.assetclass3 = d3.assettype3_id
22 group by alias_p.pendingid, alias_p.workitemid, alias_p.operationid,
23 alias_p.operationkey, alias_p.title, alias_p.sendercn, alias_p.operatedes, alias_p.pendingstate,
24 alias_p.parameter, alias_p.createdate, alias_p.deptname, alias_p.completeddate , alias_p.openstate ,
25 pd.name, w.processinstanceid
26 order by alias_p.createdate desc;
已选择30行。
执行计划
----------------------------------------------------------
0 SELECT STATEMENT Optimizer=CHOOSE (Cost=19 Card=1 Bytes=205)
1 0 SORT (GROUP BY) (Cost=19 Card=1 Bytes=205)
2 1 NESTED LOOPS (Cost=17 Card=1 Bytes=205)
3 2 HASH JOIN (Cost=16 Card=1 Bytes=191)
4 3 HASH JOIN (Cost=11 Card=1 Bytes=183)
5 4 NESTED LOOPS (Cost=8 Card=1 Bytes=167)
6 5 NESTED LOOPS (Cost=7 Card=1 Bytes=139)
7 6 NESTED LOOPS (Cost=6 Card=1 Bytes=134)
8 7 TABLE ACCESS (FULL) OF 'WF_PENDING' (Cost=5
Card=1 Bytes=111)
9 7 TABLE ACCESS (BY INDEX ROWID) OF 'WF_WORKITE
M' (Cost=1 Card=1 Bytes=23)
10 9 INDEX (UNIQUE SCAN) OF 'SYS_C004347' (UNIQ
UE)
11 6 TABLE ACCESS (BY INDEX ROWID) OF 'WF_PROCESSIN
STANCE' (Cost=1 Card=1 Bytes=5)
12 11 INDEX (UNIQUE SCAN) OF 'SYS_C004334' (UNIQUE
)
13 5 TABLE ACCESS (BY INDEX ROWID) OF 'WF_PROCESSDEFI
NITION' (Cost=1 Card=1 Bytes=28)
14 13 INDEX (UNIQUE SCAN) OF 'SYS_C004329' (UNIQUE)
15 4 TABLE ACCESS (FULL) OF 'DIC_APP_WFCONFIG' (Cost=2
Card=24 Bytes=384)
16 3 TABLE ACCESS (FULL) OF 'TB_ASSET_DIZHIYIHAO' (Cost=4
Card=310 Bytes=2480)
17 2 TABLE ACCESS (BY INDEX ROWID) OF 'DIC_APP_ASSETTYPE3'
(Cost=1 Card=1 Bytes=14)
18 17 INDEX (UNIQUE SCAN) OF 'PK_DIC_APP_ASSETTYPE3' (UNIQ
UE)
统计信息
----------------------------------------------------------
6 recursive calls
0 db block gets
847 consistent gets
0 physical reads
0 redo size
4102 bytes sent via SQL*Net to client
383 bytes received via SQL*Net from client
3 SQL*Net roundtrips to/from client
1 sorts (memory)
0 sorts (disk)
其中排序由101变为1次
一致读降为847。下降非常客观
关联调用仅有6次。
此sql性能优化非常可观。至此优化结束:)
posted @
2007-09-10 19:35 kebo 阅读(461) |
评论 (0) |
编辑 收藏
数据库迁移过程中需要目标数据库和原数据库结构相同和数据是最新。
为了保持最新数据和快速切换就不可以利用exp/imp的方式,利用data guard则有平台的问题。
在这种情况下,可以利用on prebuilt table选项创建mv。然后同步运行一段时间。一次切换,删除
mv,这种情况下可以保持同名的表。mv删除。达到数据同步,切换的目标。
posted @
2007-08-14 15:32 kebo 阅读(227) |
评论 (0) |
编辑 收藏
select z.a,z.b,z.c
from (select lag(t.a,2)over(order by t.a) pp_val,
lag(t.a,1)over(order by t.a) p_val,
t.a,
lead(t.a,1)over(order by t.a) n_val,
lead(t.a,2)over(order by t.a) nn_val,
t.b,t.c from test2 t) z
where z.a = '1'
and ((z.p_val = '1' and z.pp_val = '1')
or (z.p_val = '1' and z.n_val = '1')
or (z.n_val = '1' and z.nn_val = '1'));
posted @
2007-07-17 16:55 kebo 阅读(230) |
评论 (0) |
编辑 收藏
查询结果xml化: select dbms_xmlquery.getXML(' select * from test')from dual;
表的历史记录:执行:begin
dbms_wm.enableversioning('tablename','VIEW_WO_OVERWRITE')
则对这个表的cud操作都会记录历史,这个在系统中做历史再好不过了。
还有终于被tom说明:分析函数原来就是矩阵运算,呵呵,终于知道这类函数的数学原理了,呵呵,真爽,总算知道怎么理解了。
还有宝贝儿遇到新项目,需要很深的会计知识了,还被老板乱说,导致不好工作,希望她不要烦恼,开心工作
posted @
2007-07-11 00:15 kebo 阅读(264) |
评论 (0) |
编辑 收藏
配置:server.modules
server.modules = (
"mod_rewrite",
"mod_redirect",
"mod_access",
"mod_status",
"mod_scgi",
"mod_accesslog" )
配置
index-file.names = ( "index.php", "index.html",
"index.htm", "default.htm" )
#### accesslog module
accesslog.filename = "c:/depot/log/access.log"
static-file.exclude-extensions = ( ".php", ".pl", ".fcgi",".scgi" ) 标红的需要加上
## bind to port (default: 80)
server.port = 8080------------------访问端口,我设置8080
## error-handler for status 404
server.error-handler-404 = "/dispatch.scgi"
-----------------------------------------------
scgi.server = ("dispatch.scgi" => ((
"host" => "127.0.0.1",
"port" => 9999,
"check-local" => "disable"
)) )
scgi.debug=3
status.status-url = "/server-status"
status.config-url = "/server-config"
-------------------------------------
## server.virtual-* options
server.document-root = "c:/depot/public"
记得这个需要设置到public目录,不然按默认的rails生成的文档一些东西访问不来的
-----------------------------------------------------------------------------------------------------
需要注意的是你开发的程序需要放在c盘下,不然找不到config/scgi.yaml这个文件
然后lighttpd必须装在c盘下(当前版本下1.4.11)
posted @
2007-01-02 21:08 kebo 阅读(553) |
评论 (0) |
编辑 收藏
今天给数据库执行@spcreate.sql老是出
SP2-0734:unknown command beginning "spcreate.s..." - rest of line ignored.
郁闷坏了。经过一番折腾原来是
solution Description:
=====================
You need to enter a valid SQL*Plus command.
In this case, you cannot start svrmgrl from within SQL*Plus,
you have to start
svrmgrl from the command prompt.
This error will also occur when trying to execute a
the @
symbol is mapped to the key 'Kill' from the user's keyboard.
The
way to find out the current keyboard mapping in a unix environment is
using the command 'stty -a'.
The way to correct problem is to map 'Kill'
to some other keyboard symbol.
The command example would be
'
stty kill ^U'.
Having remapped the key you would then log into SQL*Plus
and execute script.
-------------------------------纪念一下
如果出现空行报错的话
记得执行:
SET SQLBLANKLINES ON
posted @
2006-12-27 22:24 kebo 阅读(515) |
评论 (0) |
编辑 收藏
呵呵,最近吵架比较多,我们项目和另公司合作,经常出现两家吵架的事件,小弟不信参与其中。通过具体实践,发现我现在很容易发现别人说话的漏洞。然后常常质问对方大哥无法可说,呵呵,痛快。
我想这是 我比较最近比较喜欢高手们争论话题的帖子,建议想提高吵架水平的人多学学(别用在mm身上^^)
posted @
2006-11-01 04:11 kebo 阅读(337) |
评论 (0) |
编辑 收藏
今天听了下oracle讲座,一个感受,以后不敢操作数据库了,发现对大多数数据库命令产生的后果和影响都不是很清楚。想起以前切换双机
的时候也出现eygle说的问题,然来真的对数据库基础知识预备不足啊。感觉以前真是可以称为“虎胆”哦。难怪老幕以前佩服我!!!卡卡卡。
恩,感觉oracle入门现在都够不上,不敢再给别人解决问题:)免得惹笑话。梳理了一下,估计也就对sql,集合的理解熟悉点,有点把我哦。低
调,低调......学习学习......
posted @
2006-10-03 01:43 kebo 阅读(472) |
评论 (0) |
编辑 收藏
一个比较好的缓存中间件memcached。可以用做系统的各种缓存。支持分布式。使用方便。网上有很多介绍。多是linux&unix版。现在也有window32版本了。方便实现SNA架构。在网站架构上用处多多。
http://jehiah.com/projects/memcached-win32/启动,使用都是比较方便。可以到
http://www.danga.com/memcached/下各种客户api。下载的client有使用test。一看就明白。
呵呵,真实好东西。
-----------------------
呵呵,发现plone中也用它做缓存了.
--------------------------
前几天使用了一下,发现在win下面容易出现占用cpu 100%的情况,不知道什么原因,有谁知道?没有别的什么操作,insert/get操作而已.
查找中.......
奇怪,plone中为什么不出现!!!!
posted @
2006-08-11 00:03 kebo 阅读(533) |
评论 (1) |
编辑 收藏
早上9点的飞机,昨天晚上电话本来有很多话想说。最后竟木木的什么也没说。
想象着空中的佳佳.......
想象着她忙忙碌碌的样子......
小猪开始了新的生活了......
不知道什么时候才可以再见到......
晚上等电话了......盼望着她尽快安定下来......
希望她在异国他乡平平安安,健健康康的.
posted @
2006-07-30 16:52 kebo 阅读(305) |
评论 (0) |
编辑 收藏
佳佳要飞的日子越来越近了,我已经感到了一丝丝残酷了。一直一直麻痹自己。
posted @
2006-07-19 10:29 kebo 阅读(299) |
评论 (0) |
编辑 收藏
劫财劫色死了,哎,可怜的两个小家伙,悲哀中!!!!!!!!
都是你的主人没有好好照顾你,投胎时别在做龟了
posted @
2006-07-14 23:50 kebo 阅读(228) |
评论 (0) |
编辑 收藏
在实际的软件开发过程中,我们常常可以看到这样的情形:一方面是开发人员指责需求人员不懂用户的真正的需求,讲解的需求和最后客户的要求想去甚远或指责需求只是客户的传声筒,拿到的需求不整理一下,就丢给开发人员开始做。另一方面是需求骂开发人员笨,对需求一点不理解,只懂机械的做。
这样的情况,常常导致系统不停的修改,bug不断。客户,需求,开发都筋疲力尽,然后就是项目延期,直到死亡。
这样的情况,相信每个做企业系统的开发人员都遇到过,一提起这样的问题,大家只有摆脑袋,喃喃到“简直就是恶梦,太难了”
^_^(希望不要勾起你痛苦的回忆)
其实出现这样的情况,大部分是应为需求人员和开发人员对问题的思考模式不同导致的。在业务语言和业务规则向计算机语言和系统模型转换之间有一个的过程。这个过程必须有一个衔接的人和模式来做这件事情。
这个角色需要精通业务概念和系统实现方式。然后运用分析模式方式把业务概念转换为系统模型概念。需求人员理解业务总是自觉不自觉的把一些他们认为是常识的思维放进去,但是这部分只是不会出现在需求文档中。这就需要分析人员不断的和他需求聊天,不但的询问挖掘出来。然后写入概要设计和详细涉及文档中。
还有需求人员往往在写程序需要处理的逻辑的时候会不自觉的融入人类的思考模式,在其中加入一些智能判断,但是这部分逻辑往往用计算机实现比较困难。这就需要分析人员的洞察能力,找到客户的真正需求,然后转换方式来实现。
例如:有这样一个需求是分析业务数据的。表中有27列,其中a,b,c,d,e,g,p,q,y,z为判断过程中所涉及到的数据项,各项之间的关系为:b列中的传输系统速决定z列中的最大时隙编号。如2。5G系统对应的最大时隙编号为16或8(保护)。10g系统对应的最大时隙编号为64或32(保护)。
D列为与C列中站点相领的前向站点,e列为与c列中站点相领的后向站点。
G列与p列或q列为--对应关系,即唯一的一个端口对应当前传输系统的一个时隙。
p列和q列在一行中不同时出现。即同时只有前项时隙或后项时隙,两者不同时存在。
y列为版本号,1代表设计版,2代表工程版。当g列中相同的两个端口对应的z列不同的时隙时,以Y列为2的为准。
(一下为客户平时所用的人工分析方式)
分析过程:
1)首先根据系统名称中的2。5G可以判断出Z列的最大编号为16或8,对z列进行观察后得出最大编号为8。即存在8个时隙,编号分别为1~8.
2) 将c列为“杭环城北路”站点下所有z列的数据观察后可看出z列无5,6两个时隙,于是初步判断时隙在该站点为穿通。
3)c列为“杭环城北路”所对应的D列前向站点为“衢州网通”。在z列中查找所有c列为“衢州网通”所对应的时隙,发现5,6两个时隙编号,且p,q两列中仅q列有数据,说明该时隙为后向时隙。可得出5,6两个时隙的起始站点为“衢州网通”。因该时隙对应的Y列均有1,2两个数值,根据“各项间关系”,仅取Y列数值为2的数据为有效数据。
4)c列为“杭环城北路”所对应的e列后向站点为“宁波网通”。在z列中查找所有c列为“宁波网通”所对应的时隙,发现5,6两个时隙编号。且p,q两列仅p列有数据,说明该时隙为前向时隙,可得出5,6两个时隙的终止站点为“宁波网通”。因该时隙对应的Y列均有1,2两个数据,根据各项间干系,取Y列为2的数据为有效数据。
综合判断1~4不的判断过程,可以得出结论:编号为5,6的两个时隙以“衢州网通”为起点,途径“杭环城北路”以“宁波网通”为终点
可以看到这个分析过程很不利于计算机话
(一下为我的分析方式)
------推荐的方式
-------其他
(未完待续........)
posted @
2006-07-01 11:58 kebo 阅读(391) |
评论 (0) |
编辑 收藏
与人为善,种善因,得善果.
懂得说谢谢,会说谢谢,对人际关系很重要。
今天碰到一个刚毕业的小孩,给他教东西的时候,竟没有听到一句感谢的话.
郁闷噢
posted @
2006-06-23 23:52 kebo 阅读(280) |
评论 (0) |
编辑 收藏
昨天晚上做了一个奇怪的梦,梦到被一条蛇咬了一下。清楚的记得是手指被咬的,竟痛醒了,醒了还感到手指隐隐做痛
然后今天八卦的查了一下,周公解梦如下:
蛇化龙得贵人助, 蛇咬人主得大财, 蛇多者主阴司事, 鹤上天主小口灾, 鹦鹉唤人主口舌, 燕子至有造客来,
呵呵,难道是真的?
然后今天很奇怪,一把黄杨木梳也折断了.......可惜了,跟我两年了。
posted @
2006-06-19 19:42 kebo 阅读(284) |
评论 (0) |
编辑 收藏
xxx购物超市折扣规则描述:
1.任何顾客的购物总价大于1000元则享受9折优惠
2.vip顾客的时候无论购物总价是多少享受7折优惠
3.普通顾客没有特别政策,另有规定的除外
4.白金顾客享受8.5优惠,无论购物总价多少。
5.黄金顾客享受9折优惠无论购物总价多少。
6.任何顾客所够商品中包含tv的时候,优惠后再优惠9.5折
这个user case 是自己想的,不是很复杂
对应的规则文件
#created on: 2006-6-10
#created by: kebo
package com.sample
import com.sample.Person;
import com.sample.ShopCat;
import com.sample.Product;
import com.sample.Helper;
rule "PRICE_DISCOUT"
salience 2
no-loop true
when
p:Person(c:cat->(c.getTotalPrice()>1000),discout==1)
then
p.setDiscout(0.9);
modify(p);
end
rule "VIP"
salience 3
no-loop true
when
p:Person(type==Person.VIP,discout==1)
then
p.setDiscout(0.7);
modify(p);
end
rule "COMMON"
salience 3
no-loop true
when
p:Person(type==Person.COMMON,discout==1)
then
p.setDiscout(1);
modify(p);
end
rule "PLATINA"
salience 3
no-loop true
when
p:Person(type==Person.PLATINA,discout==1)
then
p.setDiscout(0.85);
modify(p);
end
rule "GOLD"
salience 3
no-loop true
when
p:Person(type==Person.GOLD,discout==1)
then
p.setDiscout(0.9);
modify(p);
end
rule "CONTAIN TV"
salience 1
no-loop true
when
p:Person(c:cat->(Helper.isContainType(c.getProducts(),Product.TV)))
then
p.setDiscout(0.95 * p.getDiscout());
modify(p);
end
解决rule的冲突还是比较麻烦的。
为什么blogjava没有code着色功能呢?代码贴上去一点都不好看,唉!
posted @
2006-06-13 01:19 kebo 阅读(2035) |
评论 (0) |
编辑 收藏
今天去客户处开会,让我看到了政治。
人与人的关系真实复杂啊!真的是看到因一句话不小心而引火烧身例子,本来那个同事是可以安枕无优的,最后怎一个
惨字了得。记住,以为戒。
还有一点感受,做信息系统,最重要的是什么?
功能?模块?速度?是否漂亮?是否有好的架构?
其实这些都是次要的,真正重要的是如何保证“信息的正确性”
数据错误,数据表达的不完整,数据不全。这些东西决定了一个
系统的价值。如果一个系统没有做到这点,那么这个系统就
毫无价值。依据这些信息做的决策会死人的。
没有99%,只有100%
posted @
2006-06-08 22:41 kebo 阅读(232) |
评论 (0) |
编辑 收藏
'"下辈子如果我还记得你"马郁诠释的非常棒
淡淡的忧愁,淡淡的思念还有对往日情人的深深怀念,
对昔日山盟海誓的追忆.和不能和恋人在一起的丝丝痛楚..
很好听
这辈子你是否还记得我?
posted @
2006-06-07 14:21 kebo 阅读(310) |
评论 (1) |
编辑 收藏
今天的面试经历,,瞒搞笑的..
聊到最后,,我听着有些纳闷,,然后问他招聘什么职位..答'"'测试工程师"
晕倒,,我告他'"'我做开发的"
答'"'我们测试也开发,,也是开发工程师"
我说'''对不起,,我对专门做测试没兴趣"
然后散
郁闷..浪费时间
前台mm不错..很性感的
下午再面一家,问了一个问题,一门动态语言,没有调试器,现在程序出错了,
但是没有给出任何错误信息,
或者错误信息就提示错误,代码
行数有3k多,现在你怎么快速的定位错误行?
靠,这个有什么办法?
我答'"'先预测错误的问题,然后输出调试"
告我'"'不是,,让我回去想想"
然后说这个问题没有答出来,不能给我期望的工资(ft,,难道要答出所有的问题吗?)
我说'"'不会吧,,面试的人能答出所有的问题吗?"
告我'"'这个问题很简单"
切!!,难道真的简单?
posted @
2006-06-06 15:46 kebo 阅读(262) |
评论 (0) |
编辑 收藏
七十年前,一个年轻的矿工马上要和新娘举行婚礼,婚礼前最后一次下井,但发生了塌方,矿工永远没有回来。新娘子不相信她的爱人就此离她而去,苦苦等了七十年。前些日子重新整理矿井,在坑道深处一汪积水中发现一具尸体,正是七十年前被埋在井里的新郎。由于没有空气,又浸泡在饱含矿物质的水中,他仍如七十年前一般年轻。新娘子已成为白发苍苍的老妪。她扑在心爱的人身上痛哭。她做了一个决定,继续与爱人完成他们的婚礼。那一幕太动人了:八十多岁的新娘子一身盛装,洁白如雪。头发也如雪。她的爱人,依然那么年轻,闭着眼睛躺在一驾马车上。婚礼与葬礼同时举行。多少人都落泪了。
这个是什么呢?!!!!!!!!!!!!!!!!!!!!!!!!
posted @
2006-06-02 14:21 kebo 阅读(300) |
评论 (2) |
编辑 收藏
刻苦钻研主机(linu$unix)知识.和oracle数据库知识
争取年底主机达到一般主机工程师水平
数据库水平要达到中级dba水平
java方面继续研究lucene和drools知识.为将来做架构扩大知识面和选择面
web方面主要对ajax只是保持一定的关注.特别是关注ui方面的进展.服务端继续试用dwr(已经很好用了.)
关注ajax对传统web开发模式的影响.
唉,看来算法方面还是放一放了.
posted @
2006-05-29 16:26 kebo 阅读(213) |
评论 (0) |
编辑 收藏
在企业应用中报表生成是一个无法回避的问题,对格式的要求也是多种多样的
特别是excel的,直接生成需要自己一行一行的填写,麻烦之极.
利用excel模板生成excel文件.省去直接写代码生成报表之苦,还可以任意设计报表样式
免去一格一格填写之苦,赶紧使用吧:)
目前基本实现了简单报表的生成的需要
支持循环和条件判断
控制语法如下
#if:exp
eg:
#for:#{employee}#
#for:exp
#end#exp
#elsif:exp
表达式语法为:#{xxx.xxx}
其中循环中的每个元素用item表达.支持普通对象,map,list,javabean,如同jstl
目前没有实现的功能嵌套语句,不支持控制语句的嵌套(报表中应该不需要如此复杂的功能)和pdf版
基本使用方法为:
1:把kebo-0.1.jar
commons-jexl-1.0.jar,
commons-logging.jar,
jxl.jar
log4j-1.2.9.jar放入classpath,配置好log4j.xml(也可不配置)
2:代码如下:
OutputStream writer = new FileOutputStream("Book2.xls");//生成的报表文件
InputStream is = new FileInputStream("Book1.xls");//报表模板文件
TemplateEngine engine = EngineFactory.createEngine("excel");//创建excel报表引擎
engine.assertObject("modul",modul);//加入数据
Students s = new Students();
s.setName("小东");
s.setAge("23");
engine.assertObject("student",s);
engine.assertObject("employee",modul.get("employee"));
engine.evaluate(is,writer);//执行转换,生成报表
如果各位同学在使用当中有问题,请及时反馈给我,谢谢.mail:huang.kebo@gmail.com
源码编译,导入到eclipse中,直接ant目录下的build.xml即可
http://www.blogjava.net/Files/kebo/ReportTemplateEngine.rar
网速慢的朋友,留下mail.发给你们
posted @
2006-05-23 11:00 kebo 阅读(2787) |
评论 (6) |
编辑 收藏