上一页 1 ··· 166 167 168 169 170 171 172 173 174 ··· 177 下一页
摘要: NL改变内链接驱动表:SQL> select e.last_name, e.department_id, d.department_name from employees e, departments d where e.department_id = d.department_idand e.d... 阅读全文
posted @ 2014-01-09 13:06 czcb 阅读(204) 评论(0) 推荐(0)
摘要: 1.限制子查询展开情况(rownum或者Row_Number() Over 函数):SQL>select ename, deptno from emp where deptno in (select deptno from... 阅读全文
posted @ 2014-01-09 11:14 czcb 阅读(279) 评论(0) 推荐(0)
摘要: SQL*Net message from client The server process (foreground process) waits for a message from the client process to arrive.Wait Time: The time it took ... 阅读全文
posted @ 2014-01-07 18:40 czcb 阅读(738) 评论(0) 推荐(0)
摘要: ..1..等值连接..equijoin..使用=符号连接,包括左右连接和全连接..2..非等值连接(non-equijoin)多表中指使用除等号..=..外的其他运算符号作为连接查询。其他符号指..、=、、between…and 阅读全文
posted @ 2014-01-06 10:25 czcb 阅读(851) 评论(0) 推荐(0)
摘要: SQL> select * from emp; EMPNO ENAME JOB MGR HIREDATE SAL COMM DEPTNO---------- ---------- ---------- ---------- --------- -------... 阅读全文
posted @ 2014-01-05 16:59 czcb 阅读(254) 评论(0) 推荐(0)
摘要: SELECT * FROM (SELECT pubformdat0_.id id332_, pubformdat0_.domain_id domain2_332_, pubformdat0_.process_id process3_332_, ... 阅读全文
posted @ 2014-01-03 20:34 czcb 阅读(181) 评论(0) 推荐(0)
摘要: The server process is sending more data/messages to the client.The previous operation to the client was also a send.SQL*Net break/reset to clientThe s... 阅读全文
posted @ 2014-01-03 19:32 czcb 阅读(491) 评论(0) 推荐(0)
摘要: SQL*Net message to clientThe server (foreground process) is sending a message to the client.这个wait event不是idle的,千万别跟其他wait event搞混了。他发生在返回数据数据的时候。如果他突... 阅读全文
posted @ 2014-01-03 19:21 czcb 阅读(656) 评论(0) 推荐(0)
摘要: SQL*Net more data from client The server is waiting on the client to send more data to its client shadow process, in an already initiated operation.Or... 阅读全文
posted @ 2014-01-03 15:32 czcb 阅读(1253) 评论(0) 推荐(0)
摘要: oracle的一个隐藏参数_spin_count当中记录了这个值,如果超过这个参数就那这个进程就释放cpu进入睡眠状态。(然后这里有了争议,传统的说法是在睡眠了一段时间以后会醒来,但是也有人说是进入了一个队列,直到latch被释放后oracle自动会唤醒队列中的第一个进程. 阅读全文
posted @ 2014-01-03 14:06 czcb 阅读(194) 评论(0) 推荐(0)
上一页 1 ··· 166 167 168 169 170 171 172 173 174 ··· 177 下一页