Home » Page 92

Top queries to find Patch applied in Oracle apps

We often get the task to check patches applied in the oracle apps environment. Here are the Top queries to find Patch applied in EBS How to find if the bug number or patch is applied to Apps EBS select substr(APPLICATION_SHORT_NAME,1,10) Product,substr(BUG_NUMBER,1,10),Version,last_update_date applied_date from ad_bugs where BUG_NUMBER= to_char(‘&bug_no’); How to find the patch level of …

Top queries to find Patch applied in Oracle apps Read More »

Patch history tables in Oracle Apps (11i/R12.1/R12.2)

Patch history tables in Oracle Apps 11i and R12.1 AD_APPL_TOPS Stores information about all APPL_TOPS utilizing this instance. AD_APPLIED_PATCHES Stores information about all distinct updates applied. AD_BUGS Stores information about all distinct bug fixes applied. AD_DRIVERS Stores information about the drivers that comprise an update. AD_FILE_VERSIONS Stores version information for files. AD_FILES Stores information about …

Patch history tables in Oracle Apps (11i/R12.1/R12.2) Read More »

How to find optimizer and database underscore/hidden parameter in Oracle

This article is part of Oracle database administration tutorials and has query,explanation and examples on how to find the  underscore/hidden parameters for Optimizer and in general any oracle database underscore parameters Query to list all the underscore parameter with Description set lines 132 column name format a45 column description format a50 select ksppinm name, ksppdesc …

How to find optimizer and database underscore/hidden parameter in Oracle Read More »

Scroll to Top