zoukankan      html  css  js  c++  java
  • Recommended Hidden Parameters for 11gR1

    Question #1: ========== _optimizer_cost_based_transformation=false Currently set to false, should we keep or remove it for 11g upgrade? It is a workarond for several bugs, including ORA-600 bug 6666870 fixed only in 11,2? ANSWER ======= _OPTIMIZER_COST_BASED_TRANSFORMATION controls whether or not the optimizer tries different transformations against a query using the cost with and without the transformations in order to determine if a transformation is useful or not. The parameter can be set to any of: "exhaustive", "iterative", "linear", "on", "off" giving some control over how much effort is given to costing various transformations. Cost based transformation can add a high overhead at parse time but can yeild considerable benefits by way of a better plan for the statement. Known bugs 6666870 11.2 OERI:qctcte1 from cost based transformation 8541212 11.2 OERI [qctcte1] with function based index and OLD style join push predicate Question #2: _undo_autotune=false Currently set to false, should we remove it for 11g upgrade? Search key: _undo_autotune 11.1.0.7 Bug.8430038/7291739 ORA-1628 MAX # EXTENTS 32765 REACHED FOR ROLLBACK SEGMENT _SYSSMU105_123755639: Fixed in 11.2 Patch available If you leave the _undo_autotune=false in the parameter file in 11.1.0.7, then you will have to manually adjust UNDO_RETENTION, and none of the historical information would be captured in undostats. It is better to remove this parameter and allow AUM to administer the tuned retention for you. However, in 11.1.0.7 there is a bug that can occur for which the workaround is to set it to false. This is Bug 7291739. So my recommendation is to remove the parameter, allowing _undo_autotune to default to true, then install the fix for Bug 7291739 in 11.1.0.7. Question #3: =========== _unnest_subquery=false - Currently NOT set, but recommended by PeopleSoft in note ID 749100.1 "Operating System, RDBMS & Additional Component Patches Required for Installation PeopleTools 8.49" ANSWER ======= _UNNEST_SUBQUERY This parameter controls whether the optimizer attempts to unnest correlated subqueries or not. Known bugs 8245217 11.2 Dump [vopcpl] unnesting subquery
  • 相关阅读:
    Unity C# 反编译
    java finalize方法总结、GC执行finalize的过程
    Android性能调优篇之探索垃圾回收机制
    深入理解JVM(一)——JVM内存模型
    Android性能调优篇之探索JVM内存分配
    HashMap实现原理分析
    [干货]2017已来,最全面试总结——这些Android面试题你一定需要
    2017年最全的30个Android面试题,你将如何回答?
    Android2017进阶知识点、面试题及答案(精选版)
    Android2017最新面试题(3-5年经验个人面试经历)
  • 原文地址:https://www.cnblogs.com/macleanoracle/p/2967455.html
Copyright © 2011-2022 走看看