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 |
---|---|---|---|
|
|
| Name of the FDS instance |
|
| Text description of the non-Oracle instance | |
|
|
| Name of the FDS class |
|
|
| Sequence: a counter that is incremented for every row inserted (used internally) |
|
|
| Sequence: a counter that is incremented for every row inserted (used internally) |
编辑:一起学习网
标签:视图,实例,模块,数据库,也可