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

本站中文解释

Oracle视图SCHEMA_EXPORT_OBJECTS,主要是通过查询其他固定视图来确定一个用户账号下所有正在使用的数据库对象。比如表、视图、存储过程、触发器、序列,索引等。

它可以帮助我们快速确定一个账号下所有信息,并且可以帮助我们进行快速查询,比如查看一个用户下是否有重名的表,以及这个用户的对象的创建日期,更新日期等。

使用SCHEMA_EXPORT_OBJECTS视图可以用select 语句,指定 schema = ‘Schema_Name’ ,可以查看该Schema下的所有数据库对象。

官方英文解释

SCHEMA_EXPORT_OBJECTS lists simple path names for some of the object types belonging to a Data Pump schema export, which is invoked using the SCHEMAS parameter on the expdp command.

Users of the Data Pump Export and Import utilities can query this view to determine valid values for the EXCLUDE and INCLUDE parameters.

Column Datatype NULL Description

OBJECT_PATH

VARCHAR2(200)

NOT NULL

Simple path name for the object type

COMMENTS

VARCHAR2(2000)

Comment on the object type

NAMED

CHAR(1)

Do objects of this type have names? If yes (Y), then the name can be specified in the optional name_clause on the EXCLUDE and INCLUDE parameters.

See Also:

  • “DATABASE_EXPORT_OBJECTS”

  • “TABLE_EXPORT_OBJECTS”

  • Oracle Database
    Utilities
    for more information on performing a full Data Pump export using the expdp command


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