Oracle 视图 DBA_AUTO_INDEX_CONFIG 官方解释,作用,如何使用详细说明

本站中文解释

UR

Oracle视图DBA_AUTO_INDEX_CONFIGUR查看当前数据库自动创建索引的配置信息,包括发展程度、工作模式及索引的大小等。

使用方法:

(1) 查看表空间

SELECT TABLESPACE_NAME FROM DBA_AUTO_INDEX_CONFIGUR;

(2) 查看发展程度

SELECT AUTO_GROWTH_FACTOR FROM DBA_AUTO_INDEX_CONFIGUR;

(3) 查看工作模式

SELECT WORK_MODE FROM DBA_AUTO_INDEX_CONFIGUR;

(4) 查看索引大小

SELECT MAX_SIZE FROM DBA_AUTO_INDEX_CONFIGUR;

官方英文解释

DBA_AUTO_INDEX_CONFIG displays the current configuration parameter settings for automatic indexing.

You can set automatic indexing configuration parameters by using the DBMS_AUTO_INDEX.CONFIGURE procedure.

Column Datatype NULL Description

PARAMETER_NAME

VARCHAR2(128)

NOT NULL

Name of the configuration parameter

PARAMETER_VALUE

VARCHAR2(4000)

Value of the configuration parameter

LAST_MODIFIED

TIMESTAMP(6)

Time at which the parameter value was last modified

MODIFIED_BY

VARCHAR2(128)

User who last modified the parameter value

See Also:

Oracle Database PL/SQL
Packages and Types Reference
for more information about the DBMS_AUTO_INDEX.CONFIGURE procedure


数据运维技术 » Oracle 视图 DBA_AUTO_INDEX_CONFIG 官方解释,作用,如何使用详细说明