- Newest
- Most votes
- Most comments
Hello,
Can you look at the Cloudtrail -> Event history and filter for the particular RDS as "Resource Name" to look for the events performed on this instance for engine version upgrade.
Alternatively, If the RDS Event subscription enabled and SNS topic is subscribed, you might have got notification about the last time successfull engine version upgrade.
As a simple method to check the Oracle database quarterly RU update is to look at the database itself to generate proof for auditing. Can you try with below query (hoping your RDS is 19c) which shows the list of RUs applied date-wise and its status.
select PATCH_ID,PATCH_UID,PATCH_TYPE,ACTION,STATUS,DESCRIPTION,TARGET_VERSION,ACTION_TIME from DBA_REGISTRY_SQLPATCH;
example output would be something like below
PATCH_ID PATCH_UID PATCH_TYPE ACTION STATUS DESCRIPTION TARGET_VERSION ACTION_TIME
------------ ----------- ---------- ---------- --------------- ------------------------------------------------------------ -------------------- ---------------------------------------------------------------------------
29517242 22862832 RU APPLY SUCCESS Database Release Update : 19.3.0.0.190416 (29517242) 19.3.0.0.0 16-AUG-22 04.49.56.837492 PM
36582781 25751445 RU APPLY SUCCESS Database Release Update : 19.24.0.0.240716 (36582781) 19.24.0.0.0 30-JUL-24 08.22.36.183628 AM
On AWS, you can read the Oracle database alert log, which will contain database log patching information. To read the Oracle alert log, you can view it through the RDS console interface. Alternatively, you can push your Oracle alert log to CloudWatch, where you can set up log groups and log streams to monitor and query the alert log. By sending the alert log to CloudWatch, you can set up alerts, create custom dashboards, and perform advanced analysis on the log data.
Relevant content
- asked 5 months ago
- AWS OFFICIALUpdated 2 months ago
- AWS OFFICIALUpdated 3 months ago
- AWS OFFICIALUpdated a year ago
Hope it helps and if does, please accept the answer so that community benefits for clarity. ask if any additional information needed. Thanks !