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

本站中文解释

ANTIate_OBJECT

Oracle视图HS_FDS_INSTANTIate_OBJECT用于描述一个FNDDS组件实例的结构,使用它可以在组成数据库实例的共享库对象中查找出已安装的功能。它可以用于查询实例的基本信息和模块名称,从而确定出哪些模块正在正确工作。它还可以查询要更新的内容,以及安装的文件的版本号。

使用方法:

1.以sysdba用户登录到数据库,运行查询语句来实例化HS_FDS_INSTANTIate_OBJECT视图:

SELECT * FROM HS_FDS_INSTANTIATE_OBJECT;

2.查询HS_FDS_INSTANTIate_OBJECT视图以获得功能模块的细节,例如:

SELECT component_name, component_type, component_version
FROM HS_FDS_INSTANTIate_OBJECT
WHERE component_type = ‘Module Name’;

3.也可以查询HS_FDS_INSTANTIate_OBJECT视图以获得更新信息:

SELECT component_name, component_type, component_version
FROM HS_FDS_INSTANTIate_OBJECT
WHERE component_type = ‘Update’;

官方英文解释

HS_FDS_INST contains information about non-Oracle (FDS) instances.

Column Datatype NULL Description

FDS_INST_NAME

VARCHAR2(30)

NOT NULL

Name of the FDS instance

FDS_INST_COMMENTS

VARCHAR2(255)

Text description of the non-Oracle instance

FDS_CLASS_NAME

VARCHAR2(30)

NOT NULL

Name of the FDS class

FDS_INST_ID

NUMBER

NOT NULL

Sequence: a counter that is incremented for every row inserted (used internally)

FDS_CLASS_ID

NUMBER

NOT NULL

Sequence: a counter that is incremented for every row inserted (used internally)


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