|
Oracle Home |
|
Home > Oracle Applications 11i/ R12 > Oracle Application 11i DBA > Which is the patch level for a specific product ? |
|
Oracle Applications 11i eBusiness Suite DBA |
|
|---|---|
Which is the patch level for a specific product ? |
|
|
NOTE: This article named Which is the patch level for a specific product ? was taken from www.in-oracle.com.
SQL>
conn apps/apps
SQL> col PATCH_LEVEL format a17
The following select will return the patch level for all the products we have installed:
SQL> select PATCH_LEVEL from FND_PRODUCT_INSTALLATIONS order by 1;
For a specific product (for instance for AD product) we can run the following select:
SQL> select PATCH_LEVEL from FND_PRODUCT_INSTALLATIONS where PATCH_LEVEL like '%AD%';
The following query could be useful too:
set linesize 100 set pagesize 250 col Appl_short_name format a15 col Application_Name format a45 col PATCH_LEVEL format a12 col STATUS format a14
SELECT fa.application_id Appl_ID, fa.application_short_name "Appl_short_name", fa.application_name "Application_Name", decode( fpi.status, 'I', 'Installed', 'S', 'Shared', 'N', 'Not Installed', 'Customized ?' ) Status,
fpi.patch_level
Patch_Level
fnd_product_installations fpi ORDER BY 2;
NOTE: We can use also
NOTE: This article named Which is the patch level for a specific product ? was taken from www.in-oracle.com.
|
|
Home > Oracle Applications 11i/ R12 > Oracle Application 11i DBA > Which is the patch level for a specific product ? |
Disclaimer: The views expressed on this web site are my own and do not reflect the views of Oracle Corporation. You may use the information from this site only at your risk. Copyright (c) 2009-2011 Paul Catalin Tomoiu. All rights reserved.