0% found this document useful (0 votes)
37 views

Apps Patch

The document contains SQL statements to select data from various Oracle Application tables and views related to nodes, concurrent programs, processes, queues, requests, workers, products, applications, patches, resources, users, install processes, deferred jobs, and patch history for a specific bug number, likely for debugging or auditing purposes.

Uploaded by

ieuserforever
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
37 views

Apps Patch

The document contains SQL statements to select data from various Oracle Application tables and views related to nodes, concurrent programs, processes, queues, requests, workers, products, applications, patches, resources, users, install processes, deferred jobs, and patch history for a specific bug number, likely for debugging or auditing purposes.

Uploaded by

ieuserforever
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

SELECT NODE_NAME, NODE_ID, SERVER_ADDRESS, HOST, DOMAIN, WEBHOST, SUPPORT_DB FROM

FND_NODES

SELECT * FROM FND_CONCURRENT_PROGRAMS

SELECT * FROM FND_CONCURRENT_PROCESSES

SELECT * FROM FND_CONCURRENT_QUEUES

SELECT * FROM FND_CONCURRENT_REQUESTS

SELECT * FROM TAB

WHERE TNAME LIKE 'FND%AD%'

ORDER BY TNAME

SELECT * FROM FND_CONCURRENT_WORKER_REQUESTS

SELECT * FROM TAB

WHERE TNAME LIKE '%WORK%'

SELECT * FROM FND_PRODUCT_INSTALLATIONS

SELECT * FROM FND_APPLICATION

SELECT APPLICATION_SHORT_NAME, PRODUCT_CODE, PRODUCT_VERSION, PATCH_LEVEL

FROM FND_PRODUCT_INSTALLATIONS A, FND_APPLICATION B


WHERE

A.APPLICATION_ID = B.APPLICATION_ID AND

APPLICATION_SHORT_NAME LIKE '%AD%'

ORDER BY PRODUCT_CODE

SELECT * FROM AD_APPLIED_PATCHES

SELECT * FROM V$RESOURCE_LIMIT

select * from dba_users

SELECT * FROM FND_INSTALL_PROCESSES

SELECT * FROM AD_DEFERRED_JOBS

SELECT * FROM AD_PATCH_HIST_TEMP

WHERE ORIG_BUG_NUMBER = 7429271

You might also like