Oracle 视图 DBA_SQL_PATCHES 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图DBA_SQL_PATCHES用于查看安装的SQL补丁(如PSU和CPU)以及补丁安装时间。补丁通常用于修正数据库中发现的bug、性能瓶颈和安全漏洞等问题。
它包含以下字段:
Patch_Id:补丁的唯一标识号。
Bug_Number:所覆盖的Bug编号。
Release_Id:补丁发行的版本号。
Description:补丁的简要描述。
Platform:补丁的支持的操作系统。
使用方法:
SELECT *
FROM DBA_SQL_PATCHES;
此语句将显示数据库已经安装的所有SQL补丁的信息。
官方英文解释
DBA_SQL_PATCHES
displays the set of SQL patches.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
| Name of the SQL patch |
|
|
| Category of the SQL patch |
|
|
| Unique identifier generated from normalized SQL text |
|
|
| Un-normalized SQL text |
|
|
| Timestamp when the SQL patch was created |
|
| Timestamp when the SQL patch was last modified | |
|
| Text description provided for the SQL patch | |
|
| Status of the SQL patch:
| |
|
| Indicates whether the signature is force matching ( | |
|
| Advisor task ID that generated the SQL patch | |
|
| Advisor execution name for the SQL patch | |
|
| Advisor object ID for the SQL patch | |
|
| Advisor finding ID for the SQL patch | |
|
| Advisor recommendation ID for the SQL patch |