Oracle Registry History Report
Displays the Oracle registry history, showing database component actions such as upgrades, patches, and configuration changes. Useful for tracking database maintenance history and upgrade activities.
oraclesqlmaintenance-cleanupv1.0.0
0 stars0 downloads13 views0 comments
By OracleDba • Created
Code
(26 lines)1234567891011121314151617181920212223242526
-- -----------------------------------------------------------------------------------
-- File Name : https://oracle-base.com/dba/monitoring/registry_history.sql
-- Author : Tim Hall
-- Description : Displays contents of the registry history
-- Requirements : Access to the DBA role.
-- Call Syntax : @registry_history
-- Last Modified: 23/08/2008
-- -----------------------------------------------------------------------------------
SET LINESIZE 200
COLUMN action_time FORMAT A20
COLUMN action FORMAT A20
COLUMN namespace FORMAT A20
COLUMN version FORMAT A10
COLUMN comments FORMAT A30
COLUMN bundle_series FORMAT A10
SELECT TO_CHAR(action_time, 'DD-MON-YYYY HH24:MI:SS') AS action_time,
action,
namespace,
version,
id,
comments,
bundle_series
FROM sys.registry$history
ORDER by action_time;