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 of the indextype |
|
|
| Name of the indextype |
|
| Name of the base type schema | |
|
| Name of the base type name | |
|
| Datatype of the base type | |
|
|
| Name of the array type schema |
|
|
| Name of the array type name |
See Also:
“DBA_INDEXTYPE_ARRAYTYPES”
“USER_INDEXTYPE_ARRAYTYPES”
编辑:广州明生医药有限公司
标签:索引,类型,数组,视图,用户