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

本站中文解释

DATABASE_EXPORT_OBJECTS视图是Oracle中提供的一个基于数据库对象(如表、索引、函数、包和触发器)的系统视图,用于查询数据库的对象的版本和元数据信息。

要使用DATABASE_EXPORT_OBJECTS视图,可在SELECT语句中指定对象名称,查询对应对象的元数据信息:

SELECT * FROM database_export_objects where object_name = ‘表名’

上面的查询语句会返回指定表的相应元数据信息,包括创建日期、时间戳和版本。DATABASE_EXPORT_OBJECTS视图已被Oracle剥离出来作为数据库不同版本之间数据迁移工作的重要工具。

官方英文解释

DATABASE_EXPORT_OBJECTS lists simple path names for some of the object types belonging to a full Data Pump export, which is invoked using the FULL=Y 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:

  • “SCHEMA_EXPORT_OBJECTS”

  • “TABLE_EXPORT_OBJECTS”

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


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