摘要:
环境准备: 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), 阅读全文
摘要:
1. PARTITION RANGE SINGLE 注意:操作2 中的 TABLE ACCESS FULL 并不是全表扫描,只是对分区1 做 全分区扫描 case2 2. 分区范围迭代(PARTITION RANGE ITERATOR) 3. 分区范围内联(PARTITION RANGE LIST) 阅读全文
摘要:
必须以 ' runstats_last '的方式查看执行计划哦! 操作一 hint /*+ gather_plan_statistics */ : /* 添加 hint /*+ gather_plan_statistics */ SELECT * FROM table(dbms_xplan.disp 阅读全文
摘要:
阅读全文
摘要:
阅读全文
摘要:
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_ 阅读全文