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

本站中文解释

该视图ALL_INDEXTYPES_ARRAYTYPES用于查看存储在当前用户下的所有索引类型和数组类型索引组合,从而方便用户查询使用。它返回以下列:

INDEX_TYPE:指定索引类型。
ARRAY_TYPE:指定索引应用到的数组类型。

要使用ALL_INDEXTYPES_ARRAYTYPES视图,可以在Oracle中执行以下语句:

SELECT INDEX_TYPE,ARRAY_TYPE
FROM ALL_INDEXTYPES_ARRAYTYPES;

官方英文解释

ALL_INDEXTYPE_ARRAYTYPES displays information about the array types specified by the indextypes accessible to the current user.

Related Views

  • DBA_INDEXTYPE_ARRAYTYPES displays information about the array types specified by all indextypes in the database.

  • USER_INDEXTYPE_ARRAYTYPES displays information about the array types specified by the indextypes owned by the current user.

Column Datatype NULL Description

OWNER

VARCHAR2(128)

NOT NULL

Owner of the indextype

INDEXTYPE_NAME

VARCHAR2(128)

NOT NULL

Name of the indextype

BASE_TYPE_SCHEMA

VARCHAR2(128)

Name of the base type schema

BASE_TYPE_NAME

VARCHAR2(128)

Name of the base type name

BASE_TYPE

VARCHAR2(30)

Datatype of the base type

ARRAY_TYPE_SCHEMA

VARCHAR2(128)

NOT NULL

Name of the array type schema

ARRAY_TYPE_NAME

VARCHAR2(128)

NOT NULL

Name of the array type name

See Also:

  • “DBA_INDEXTYPE_ARRAYTYPES”

  • “USER_INDEXTYPE_ARRAYTYPES”


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