Oracle 视图 ALL_SQLJ_TYPE_ATTRS 官方解释,作用,如何使用详细说明
本站中文解释
和USER_SQLJ_TYPE_ATTRS
Oracle 视图是特殊的数据表,存储在数据库中。 ALL_SQLJ_TYPE_ATTRS 和 USER_SQLJ_TYPE_ATTRS 视图显示所有SQLJ类型的定义属性信息。
ALL_SQLJ_TYPE_ATTRS 视图显示以下几种所有定义 SQLJ 类型的属性信息:类型名称,继承。该视图中的每一行都与一个类型的属性关联:
USER_SQLJ_TYPE_ATTRS 视图只显示当前用户所定义的SQLJ类型的属性信息。该视图中的每一行都与一个类型的属性关联:
要使用这两个视图,可以像使用其他任何视图一样进行访问,这可以通过下面的SQL语句:
SELECT * FROM all_sqlj_type_attrs;
SELECT * FROM user_sqlj_type_attrs;
官方英文解释
ALL_SQLJ_TYPE_ATTRS
describes the attributes of the SQLJ object types accessible to the current user.
Related Views
-
DBA_SQLJ_TYPE_ATTRS
describes the attributes of all SQLJ object types in the database. -
USER_SQLJ_TYPE_ATTRS
describes the attributes of the object types owned by the current user. This view does not display theOWNER
column.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
Owner of the type |
|
|
|
|
Name of the type |
|
|
|
Name of the attribute |
|
|
External name of the attribute |
|
|
|
Type modifier of the attribute:
|
|
|
|
Owner of the type of the attribute |
|
|
|
Name of the type of the attribute |
|
|
|
Length of the |
|
|
|
Decimal precision of the |
|
|
|
Scale of the |
|
|
|
Character set name of the attribute ( |
|
|
|
|
Syntactical order number or position of the attribute as specified in the type specification or |
|
|
Indicates whether the attribute is inherited from a supertype ( |
See Also:
-
“DBA_SQLJ_TYPE_ATTRS”
-
“USER_SQLJ_TYPE_ATTRS”