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 |
---|---|---|---|
|
|
|
Name of the configuration parameter |
|
|
|
Value of the configuration parameter |
|
|
|
Time at which the parameter value was last modified |
|
|
|
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