摘要: 在SQL语句优化过程中,经常会用到hint,下面我们来介绍一下在SQL优化过程中常见Oracle中"HINT"的30个用法: 1. /*+ALL_ROWS*/ 表明对语句块选择基于开销的优化方法,并获得最佳吞吐量,使资源消耗最小化。 例如: SELECT /*+ALL+_ROWS*/ EMP_NO,EMP_NAM,DAT_IN FROM BSEMPMS WHERE EMP_NO='SCOTT';2... 阅读全文
posted @ 2008-07-11 14:10 lonelywolf 阅读(394) 评论(0) 推荐(0) 编辑
摘要: 1.冒泡法:通过相邻两个数挨个比较,将大的数逐渐退后。#include <iostream.h> void BubbleSort(int* pData,int Count){ int iTemp; for(int i=1;i<Count;i++) { for(int j=Count-1;j>=i;j--) { if(pData[j]<pData[j-1]) { iTe... 阅读全文
posted @ 2008-07-11 13:57 lonelywolf 阅读(403) 评论(0) 推荐(0) 编辑
摘要: 熟练window对象的open、close、alert、confirm、prompt、setTimeout、clearTimeout、setInterval、clearInterval、moveBy、resizeBy、scrollBy方法的使用 掌握window对象的moveTo、resizeTo、scrollTo、print方法的使用 熟练掌握window对象的status、location、n... 阅读全文
posted @ 2008-07-11 13:55 lonelywolf 阅读(554) 评论(0) 推荐(0) 编辑
摘要: Event 事件 事件源对象event.srcElement.tagNameevent.srcElement.type捕获释放event.srcElement.setCapture();event.srcElement.releaseCapture();事件按键event.keyCodeevent.shiftKeyevent.altKeyevent.ctrlKey事件返回值event.return... 阅读全文
posted @ 2008-07-11 13:54 lonelywolf 阅读(1201) 评论(0) 推荐(0) 编辑
摘要: 事件源对象 event.srcElement.tagName event.srcElement.type 捕获释放 event.srcElement.setCapture(); event.srcElement.releaseCapture(); 事件按键 event.keyCode event.shiftKey event.altKey event.ctrlKey 事件返回值 event.ret... 阅读全文
posted @ 2008-07-11 13:52 lonelywolf 阅读(464) 评论(1) 推荐(0) 编辑