0% found this document useful (0 votes)
117 views2 pages

Upgrade 19c Appstier Patches

This SQL query selects bug numbers, application names, languages, creation dates, and patch application statuses from the AD_BUGS and AD_APPL_TOPS tables for 13 specific bug numbers. It orders the results by bug number, application name, and language. A second section shows sample patch application comments and includes an Oracle E-Business Suite release. A third section shows an example ADOP command to apply multiple patches during a downtime window.

Uploaded by

Augustine Odero
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
117 views2 pages

Upgrade 19c Appstier Patches

This SQL query selects bug numbers, application names, languages, creation dates, and patch application statuses from the AD_BUGS and AD_APPL_TOPS tables for 13 specific bug numbers. It orders the results by bug number, application name, and language. A second section shows sample patch application comments and includes an Oracle E-Business Suite release. A third section shows an example ADOP command to apply multiple patches during a downtime window.

Uploaded by

Augustine Odero
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

SELECT adb.bug_number, aat.name appl_top_name, adb.language, adb.

creation_date,
decode(ad_patch.is_patch_applied('R12',aat.appl_top_id,adb.bug_number,adb.language)
,'EXPLICIT','APPLIED','NOT_APPLIED','NOT APPLIED') status
FROM ad_bugs adb,
(select aat.name, aat.appl_top_id
from applsys.ad_appl_tops aat,
(select distinct fat.name from applsys.fnd_appl_tops fat) fat
where aat.name=fat.name ) aat
where adb.bug_number in (
'26834480',
'28840822',
'25452805',
'26052406',
'30433124',
'31349591',
'31800803',
'33346385',
'19597008',
'20251314',
'28732161',
'31088182',
'26521736'
) order by adb.bug_number,aat.name,adb.language;

Patches to apply, comments on them, and relevant Oracle E-Business Suite releases.
select * from ad_bugs where bug_number in (
'26834480',
'28840822',
'25452805',
'26052406',
'30433124',
'31349591',
'31800803',
'33346385',
'19597008',
'20251314',
'28732161',
'31088182',
'26521736')

Applied
select * from ad_bugs where bug_number in (
'31349591',
'31800803',
'33346385',
'28732161',
'31088182',
----'26521736'
);fDDf

adop phase=apply apply_mode=downtime


patches=33346385,31088182,31349591,31800803,28732161

adop phase=prepare,apply,finalize,cutover,cleanup mtrestart=no


patches=33346385,31088182,31349591,31800803,28732161 restart=yeswelcome1
perl $AD_TOP/bin/admkappsutil.pl

You might also like