Thursday, October 12, 2023
Query to check patches applied correctly with the expected sequence.
1.1.Run this sql statement:
select * from ad_adop_session_patches order by end_date desc;
1.2. Run this piece of sql code:
set pagesize 200;
set linesize 160;
column adop_session_id format 999999999999;
column bug_number format a15;
column status format a15;
column applied_file_system_base format a23;
column patch_file_system_base format a23;
column adpatch_options format a15;
column node_name format a15;
column end_date format a15;
column clone_status format a15;
select ADOP_SESSION_ID, BUG_NUMBER, STATUS, APPLIED_FILE_SYSTEM_BASE, PATCH_FILE_SYS TEM_BASE, ADPATCH_OPTIONS, NODE_NAME, END_DATE, CLONE_STATUS
from ad_adop_session_patches
order by end_date desc;
Below are possible values of STATUS column:
N - Not Applied In the current node but applied in other nodes
R - Patch Application is going on.
H - Patch failed in the middle. (Hard Failure)
F - Patch failed in the middle but user tried to skip some failures.
S - Patch Application succeeded after skipping the failed jobs.
Y - Patch Application succeeded.
C - Reserved for clone and config_clone. Indicates clone completed
Subscribe to:
Post Comments (Atom)
Oracle Database Password Management: Resetting Password Policies and User Account Expiry Issues
Checking Password Lifetime Policy Oracle password expiration rules are controlled through profiles. The following query helps identify the...
-
TKPROF Overview. TKPROF is used for diagnosing performance issues. It formats a trace file into readable format for performance ana...
-
CLOUD EBS INSTALLTION login as: opc Authenticating with public key "rsa-key-20201105" from agent Last login: Thu Nov 19 08...
-
Query to find the Concurrent Request Trace File Path In Oracle Applications, we all submit concurrent requests. As a developer when we nee...
No comments:
Post a Comment