首页 > 数据库 > Oracle > 正文

ORACLE常用傻瓜問題1000問(之五)

2024-08-29 13:30:39
字体:
来源:转载
供稿:网友

 
              oracle常用傻瓜問題1000問(之五)

 

作者:  ccbzzp

 

        大家在應用oracle的時候可能會遇到很多看起來不難的問題, 特別對新手來說, 今天我簡單把它總結一下, 發布給大家, 希望對大家有幫助! 和大家一起探討, 共同進步!

 

        對oracle高手來說是不用看的.

 
   本讲主要讲的是sql语句的优化方法! 主要基于oracle9i的.
174. /*+all_rows*/
   表明对语句块选择基于开销的优化方法,并获得最佳吞吐量,使资源消耗最小化.
   例如:
   select /*+all+_rows*/ emp_no,emp_nam,dat_in from bsempms where emp_no='ccbzzp';

175. /*+first_rows*/
   表明对语句块选择基于开销的优化方法,并获得最佳响应时间,使资源消耗最小化.
   例如:
   select /*+first_rows*/ emp_no,emp_nam,dat_in from bsempms where    emp_no='ccbzzp';

176. /*+choose*/
   表明如果数据字典中有访问表的统计信息,将基于开销的优化方法,并获得最佳的吞吐量;
   表明如果数据字典中没有访问表的统计信息,将基于规则开销的优化方法;
   例如:
   select /*+choose*/ emp_no,emp_nam,dat_in from bsempms where emp_no='ccbzzp';

177. /*+rule*/
   表明对语句块选择基于规则的优化方法.
   例如:
   select /*+ rule */ emp_no,emp_nam,dat_in from bsempms where emp_no='ccbzzp';  

178. /*+full(table)*/
   表明对表选择全局扫描的方法.
   例如:
   select /*+full(a)*/ emp_no,emp_nam from bsempms a where emp_no='ccbzzp';

179. /*+rowid(table)*/
   提示明确表明对指定表根据rowid进行访问.
   例如:
   select /*+rowid(bsempms)*/ * from bsempms where rowid>='aaaaaaaaaaaaaa'
   and emp_no='ccbzzp';

180. /*+cluster(table)*/
   提示明确表明对指定表选择簇扫描的访问方法,它只对簇对象有效.
   例如:
   select  /*+cluster */ bsempms.emp_no,dpt_no from bsempms,bsdptms
   where dpt_no='tec304' and bsempms.dpt_no=bsdptms.dpt_no;

181. /*+index(table index_name)*/
   表明对表选择索引的扫描方法.
   例如:
   select /*+index(bsempms sex_index) use sex_index because there are fewmale    bsempms */  from bsempms where sex='m';

182. /*+index_asc(table index_name)*/
   表明对表选择索引升序的扫描方法.
   例如:
   select /*+index_asc(bsempms pk_bsempms) */  from bsempms where dpt_no='ccbzzp';

183. /*+index_combine*/
   为指定表选择位图访问路经,如果index_combine中没有提供作为参数的索引,将选择出位图索引的
   布尔组合方式.
   例如:
   select /*+index_combine(bsempms sal_bmi hiredate_bmi)*/ * from bsempms
   where sal<5000000 and hiredate<sysdate;

184. /*+index_join(table index_name)*/
   提示明确命令优化器使用索引作为访问路径.
   例如:
   select /*+index_join(bsempms sal_hmi hiredate_bmi)*/ sal,hiredate
   from bsempms where sal<60000;

185. /*+index_desc(table index_name)*/
   表明对表选择索引降序的扫描方法.
   例如:
   select /*+index_desc(bsempms pk_bsempms) */  from bsempms where    dpt_no='ccbzzp';

186. /*+index_ffs(table index_name)*/
   对指定的表执行快速全索引扫描,而不是全表扫描的办法.
   例如:
   select /*+index_ffs(bsempms in_empnam)*/ * from bsempms where dpt_no='tec305';

187. /*+add_equal table index_nam1,index_nam2,...*/
   提示明确进行执行规划的选择,将几个单列索引的扫描合起来.
   例如:
   select /*+index_ffs(bsempms in_dptno,in_empno,in_sex)*/ * from bsempms where emp_no='ccbzzp' and dpt_no='tdc306';

188. /*+use_concat*/
   对查询中的where后面的or条件进行转换为union all的组合查询.
   例如:
   select /*+use_concat*/ * from bsempms where dpt_no='tdc506' and sex='m';

189. /*+no_expand*/
   对于where后面的or 或者in-list的查询语句,no_expand将阻止其基于优化器对其进行扩展.
   例如:
   select /*+no_expand*/ * from bsempms where  dpt_no='tdc506' and sex='m';

190. /*+nowrite*/
   禁止对查询块的查询重写操作.

191. /*+rewrite*/
   可以将视图作为参数.

192. /*+merge(table)*/
   能够对视图的各个查询进行相应的合并.
   例如:
   select /*+merge(v) */ a.emp_no,a.emp_nam,b.dpt_no from bsempms a (selet dpt_no
   ,avg(sal) as avg_sal from bsempms b group by dpt_no) v where a.dpt_no=v.dpt_no
   and a.sal>v.avg_sal;

193. /*+no_merge(table)*/
   对于有可合并的视图不再合并.
   例如:
   select /*+no_merge(v) */ a.emp_no,a.emp_nam,b.dpt_no from bsempms a (selet dpt_no
   ,avg(sal) as avg_sal from bsempms b group by dpt_no) v where a.dpt_no=v.dpt_no
   and a.sal>v.avg_sal;
  
194. /*+ordered*/
   根据表出现在from中的顺序,ordered使oracle依此顺序对其连接.
   例如:
   select /*+ordered*/ a.col1,b.col2,c.col3 from table1 a,table2 b,table3 c
   where a.col1=b.col1 and b.col1=c.col1;

195. /*+use_nl(table)*/
   将指定表与嵌套的连接的行源进行连接,并把指定表作为内部表.
   例如:
   select /*+ordered use_nl(bsempms)*/ bsdptms.dpt_no,bsempms.emp_no,bsempms.emp_nam from bsempms,bsdptms where bsempms.dpt_no=bsdptms.dpt_no;

196. /*+use_merge(table)*/
   将指定的表与其他行源通过合并排序连接方式连接起来.
   例如:
   select /*+use_merge(bsempms,bsdptms)*/ * from bsempms,bsdptms where
   bsempms.dpt_no=bsdptms.dpt_no;

197. /*+use_hash(table)*/
   将指定的表与其他行源通过哈希连接方式连接起来.
   例如:
   select /*+use_hash(bsempms,bsdptms)*/ * from bsempms,bsdptms where
   bsempms.dpt_no=bsdptms.dpt_no;

198. /*+driving_site(table)*/
   强制与oracle所选择的位置不同的表进行查询执行.
   例如:
   select /*+driving_site(dept)*/ * from bsempms,[email protected] where bsempms.dpt_no=dept.dpt_no;

199. /*+leading(table)*/
   将指定的表作为连接次序中的首表.
  
200. /*+cache(table)*/
   当进行全表扫描时,cache提示能够将表的检索块放置在缓冲区缓存中最近最少列表lru的最近使用端
   例如:
   select /*+full(bsempms) cahe(bsempms) */ emp_nam from  bsempms;

201. /*+nocache(table)*/
   当进行全表扫描时,cache提示能够将表的检索块放置在缓冲区缓存中最近最少列表lru的最近使用端
   例如:
   select /*+full(bsempms) nocahe(bsempms) */ emp_nam from  bsempms;

202. /*+append*/
   直接插入到表的最后,可以提高速度.
   insert /*+append*/ into test1  select * from test4 ;
203. /*+noappend*/
   通过在插入语句生存期内停止并行模式来启动常规插入.

   insert /*+noappend*/ into test1  select * from test4 ;


   
   待续...

  
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表