Oracle 视图 ALL_PLSQL_COLL_TYPES 官方解释,作用,如何使用详细说明
本站中文解释
ALL_PLSQL_COLL_TYPES是Oracle 11g中新增的信息视图,用于显示所有受支持的PL/SQL集合类型,其中包括内建类型和用户定义类型。
Oracle视图ALL_PLSQL_COLL_TYPES可以通过下面两种方式使用:
1、可以使用SELECT语句查询查看所有受支持的PL/SQL集合类型:
SELECT * FROM ALL_PLSQL_COLL_TYPES;
2、也可以使用DESCRIBE查看所有受支持的PL/SQL集合类型的详细信息:
DESCRIBE all_plsql_coll_types;
官方英文解释
ALL_PLSQL_COLL_TYPES
describes named PL/SQL collection types accessible to the user.
Related Views
-
DBA_PLSQL_COLL_TYPES
describes all named PL/SQL collection types in the database. This view does not display theCHAR_USED
column. -
USER_PLSQL_COLL_TYPES
describes the user’s own named PL/SQL collection types. This view does not display theOWNER
orCHAR_USED
columns.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
Owner of the type |
|
|
|
Name of the type |
|
|
|
Name of the package containing the collection |
|
|
|
Collection type |
|
|
|
The upper bound of a varray or length constraint of an index by |
|
|
|
Owner of the type of the element |
|
|
|
Name of the type of the element |
|
|
|
Name of the package containing the element |
|
|
|
Length of the |
|
|
|
Decimal precision of the |
|
|
|
Scale of the |
|
|
|
Character set name of the element |
|
|
|
Storage optimization specification for VARRAY of numeric elements |
|
|
|
Indicates whether null information is stored with each |
|
|
|
|
|
|
|
Index by |
|
|
|
Type modifier of the element |
See Also:
-
“DBA_PLSQL_COLL_TYPES”
-
“USER_PLSQL_COLL_TYPES”