1 minutes readHow To Determine Which File System is the Run or Patch File System Using a SQL Query?

Reader Mode

To determine the RUN file system:

SELECT EXTRACTVALUE(XMLType(text),’//oa_context_file_loc’)
 appl_top, status
  FROM fnd_oam_context_files
 WHERE name NOT IN (‘TEMPLATE’,’METADATA’,’config.txt’)
  AND CTX_TYPE=’A’
 AND (status IS NULL OR UPPER(status) IN (‘S’,’F’))
  AND EXTRACTVALUE(XMLType(text),’//file_edition_type’) = ‘run’;

To determine the P ye

ATCH files system:

SELECT


EXTRACTVALUE(XMLType(text),’//oa_context_file_loc’)
 appl_top, status
  FROM fnd_oam_context_files
 WHERE name NOT IN (‘TEMPLATE’,’METADATA’,’config.txt’)
  AND CTX_TYPE=’A’
 AND (status IS NULL OR UPPER(status) IN (‘S’,’F’))
  AND EXTRACTVALUE(XMLType(text),’//file_edition_type’) = ‘patch’;

Related Articles

Responses

Your email address will not be published. Required fields are marked *

Password Reset
Please enter your e-mail address. You will receive a new password via e-mail.