Oracle 视图 ALL_OBJECTS_AE 官方解释,作用,如何使用详细说明
本站中文解释
ALL_OBJECTS_AE视图显示了应用模式下的用户和共享池中的所有对象的基本信息。
它含有:
1.对象名称:显示对象的名称
2.对象类型:显示这个对象是一个表、视图、序列等等
3.模式:显示该对象所属的模式
4.安装定义:显示如何使用它,比如CREATE TABLE,CREATE
VIEW,CREATE PROCEDURE,SELECT等
使用此视图可以查询应用模式下所有对象的信息,例如查看对象是否存在,查询对象的安装定义等:
例如:SELECT * FROM ALL_OBJECTS_AE WHERE OBJECT_NAME = ‘Person’;
此查询将返回具有指定的名称的所有对象的详细信息,以便查看其类型、定义等。
官方英文解释
ALL_OBJECTS_AE
describes the objects (across all editions) accessible to the current user. Dropped objects appear in this view with OBJECT_TYPE
=
NON-EXISTENT
.
Related Views
-
DBA_OBJECTS_AE
describes all objects (across all editions) in the database. -
USER_OBJECTS_AE
describes the objects (across all editions) owned by the current user. This view does not display theOWNER
column.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Owner of the object |
|
|
|
Name of the object |
|
|
Name of the subobject (for example, partition) |
|
|
|
|
Dictionary object number of the object |
|
|
Dictionary object number of the segment which contains the object |
|
|
|
Type of the object |
|
|
|
|
Timestamp for the creation of the object |
|
|
|
Timestamp for the last modification of the object and dependent objects resulting from a DDL statement (including grants and revokes) |
|
|
Timestamp for the specification of the object (character data) |
|
|
|
Status of the object:
|
|
|
|
Indicates whether the object is temporary (the current session can see only data that it placed in this object itself) ( |
|
|
|
Indicates whether the name of this object was system-generated ( |
|
|
|
Indicates whether this is a secondary object created by the |
|
|
|
|
Namespace for the object |
|
|
Name of the edition in which the object is actual |
|
|
|
Values:
|
|
|
|
Values:
|
|
|
|
Denotes whether the object was created, and is maintained, by Oracle-supplied scripts (such as catalog.sql or catproc.sql). An object for which this column has the value |
|
|
|
Indicates whether the object is an Application common object ( |
|
|
|
Default collation for the object |
|
|
|
Indicates whether this object is duplicated on this shard ( |
|
|
|
Indicates whether this object is sharded ( |
|
|
|
Indicates whether this object is imported ( |
|
|
|
ID of the Application that created the object |
|
|
|
ID of the Application Version that created the object |
|
|
|
ID of the Application that last modified the object |
|
|
|
ID of the Application Version that last modified the object |
See Also:
-
“DBA_OBJECTS_AE”
-
“USER_OBJECTS_AE”