DBA Hub

📋Steps in this guide1/1

Get installed sqlpatches in db

--- From 12c onward

oracle configurationintermediate
by OracleDba
14 views
1

Get installed sqlpatches in db

Code/Command (click line numbers to comment):

1
2
3
4
5
6
--- From 12c onward
set lines 2000
select patch_id,status,description from dba_registry_sqlpatch;
--- For 11g and below:
set lines 2000
select * from dba_registry_history;

Comments (0)

Please to add comments

No comments yet. Be the first to comment!