暂无图片
暂无图片
暂无图片
暂无图片
暂无图片

极端恢复时常用到的几个隐藏参数

会UI设计的dba 2025-03-06
159

Note: Oracle hidden parameters are undocumented and unsupported by Oracle. 

Make sure that you thoroughly test all hidden parameters before placing them in your production environment.

查询语句:

SELECT

    ksppinm    "Parameter Name",

    ksppstvl   "Value",

    ksppdesc   "Description"

FROM

    x$ksppi    x,

    x$ksppcv   y

WHERE

    x.indx = y.indx

    AND x.inst_id = userenv('Instance')

    AND y.inst_id = userenv('Instance')

    AND ksppinm LIKE '要查的参数名称%';


Parameter Name                                            Value        Description

-----------------------------------                   ---------- --------------------------------------------------------------------------------

_allow_error_simulation                               FALSE      Allow error simulation for testing

_allow_resetlogs_corruption                        FALSE      allow resetlogs even if it will cause corruption

_allow_terminal_recovery_corruption           FALSE         Finish terminal recovery even if it may cause corruption

_allow_read_only_corruption                        FALSE       allow read-only open even if database is corrupt

_allow_drop_snapshot_standby_grsp           FALSE       Allow dropping snapshot standby guaranteed restore point

_allow_drop_ts_with_grp                               FALSE       Allow drop Tablespace with guaranteed restore points

_allow_compatibility_adv_w_grp                  FALSE       allow advancing DB compatibility with guaranteed restore points

_allow_commutativity                                   TRUE        allow for commutativity of +, * when comparing expressions

_allow_level_without_connect_by                 FALSE       allow level without connect by

_allow_cell_smart_scan_attr                          TRUE        Allow checking smart_scan_capable Attr

_corrupted_rollback_segments                   NULL        corrupted undo segment list

_minimum_giga_scn                                    NULL          Minimum SCN to start with in 2^30 units  11  #在11.2.0.2打上相关的scn补丁以及后续版本已经废除

「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。

评论