摘要: 环境准备: 1.0 测试表 CREATE TABLE t ( id NUMBER, d1 DATE, n1 NUMBER, n2 NUMBER, n3 NUMBER, n4 NUMBER, n5 NUMBER, n6 NUMBER, c1 VARCHAR2(20), c2 VARCHAR2(20), 阅读全文
posted @ 2017-06-17 20:54 Oracle-fans 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 1. PARTITION RANGE SINGLE 注意:操作2 中的 TABLE ACCESS FULL 并不是全表扫描,只是对分区1 做 全分区扫描 case2 2. 分区范围迭代(PARTITION RANGE ITERATOR) 3. 分区范围内联(PARTITION RANGE LIST) 阅读全文
posted @ 2017-06-17 20:51 Oracle-fans 阅读(843) 评论(0) 推荐(0) 编辑
摘要: 必须以 ' runstats_last '的方式查看执行计划哦! 操作一 hint /*+ gather_plan_statistics */ : /* 添加 hint /*+ gather_plan_statistics */ SELECT * FROM table(dbms_xplan.disp 阅读全文
posted @ 2017-06-17 20:50 Oracle-fans 阅读(1867) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-06-17 20:46 Oracle-fans 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-06-17 20:45 Oracle-fans 阅读(181) 评论(0) 推荐(0) 编辑
摘要: create table test0605 as select * from dba_objects;select t1.owner,t1.object_name,t1.object_id from test0605 t1 where t1.object_id=3344;select t1.SQL_ 阅读全文
posted @ 2017-06-17 20:43 Oracle-fans 阅读(1232) 评论(0) 推荐(0) 编辑