Oracle 参数 HEAT_MAP 官方解释,作用,如何配置最优化建议

本站中文解释

_ENABLED 参数

HEAT_MAP_ENABLED参数指定是否使用热点图来识别可能存在性能瓶颈的部分。此参数可以在11gR2以及更高版本的Oracle中使用。

设置该参数的正确方式是:

1. 使用系统管理员的权限登录到Oracle数据库实例。

2. 使用ALTER SYSTEM命令设置该参数:

ALTER SYSTEM SET HEAT_MAP_ENABLED=TRUE SCOPE=BOTH;

3. 使用COMMIT命令提交修改:

COMMIT;

4. 使用ALTER SYSTEM重新启动数据库实例:

ALTER SYSTEM RESTART;

官方英文解释

Use HEAT_MAP to enable or disable both the Heat Map and Automatic Data Optimization (ADO) features.

Property Description

Parameter type

String

Syntax

HEAT_MAP = { ON | OFF }

Default value

OFF

Modifiable

ALTER SESSION, ALTER SYSTEM

Modifiable in a PDB

Yes

Basic

No

Oracle RAC

If specified, use the same value on all instances

Setting the HEAT_MAP initialization parameter to ON causes the database to track read and write access of all segments, as well as modification of database blocks, due to DMLs and DDLs. These activities are not tracked for objects in the SYSTEM and SYSAUX tablespaces.

See Also:

  • Oracle Database VLDB and
    Partitioning Guide
    for more information about enabling and disabling the Heat Map feature

  • Oracle Database VLDB and
    Partitioning Guide
    for more information about Heat Map tracking


数据运维技术 » Oracle 参数 HEAT_MAP 官方解释,作用,如何配置最优化建议