Oracle 视图 DBA_SERVER_REGISTRY 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图DBA_SERVER_REGISTRY提供了一种方便多用户访问服务注册表的灵活机制。它支持将信息放入服务器注册表,并提供给对注册表进行查询和修改的一般数据库用户。如果用户需要此信息,他就可以从这个视图中直接查询它们。
使用DBA_SERVER_REGISTRY这个视图非常容易,只需要使用标准的SQL查询语句即可。例如,可以使用SELECT语句从视图中检索数据:
SELECT server_name, key1, value1
FROM dba_server_registry
WHERE key1 LIKE ‘%keyword%’;
上面这条语句将从视图中检索所有key1列中带有“keyword”字样的记录,并且返回server_name列和 value1 列的数据。这样,用户就可以快速检索有关特定信息的数据。
官方英文解释
DBA_SERVER_REGISTRY displays information about all server components in the database that are loaded into the component registry.
| Column | Datatype | NULL | Description |
|---|---|---|---|
|
|
| Component identifier |
|
| Component name | |
|
| Component version loaded | |
|
| Component full version | |
|
| Component status:
| |
|
| Time when the component was last modified | |
|
|
| User that created the component entry |
|
|
| User that contains the objects for the component |
|
| Validation procedure | |
|
| Indicates whether the component requires a startup after the upgrade ( | |
|
| Parent component identifier | |
|
| A list of ancillary schema names associated with the component |
编辑:编程语言
标签:视图,注册表,语句,数据,用户