Home » Page 19

How to find the FND_FILE output of the running concurrent request

We generally write FND_FILE statements in concurrent programs for debugging, logs, and various other messages These are visible in Concurrent request logs and out once the concurrent program completes only If we want to see the logs and out for the running concurrent request, then we need to find the temporary log and out file …

How to find the FND_FILE output of the running concurrent request Read More »

Regexp in oracle : functions ,Regular expression

This is part of the Oracle SQL tutorial and has good examples and explanations on Regexp in Oracle. regexp in oracle The following functions have been introduced REGEXP_LIKE: Similar to the LIKE operator, but performs regular expression matchinginstead of simple pattern-matchingREGEXP_REPLACE: Searches for a regular expression pattern and replaces it with areplacement stringREGEXP_INSTR: Searches for a given …

Regexp in oracle : functions ,Regular expression Read More »

Top SQL Patch Queries in Oracle Database

Here are some of the Top Useful Queries for SQL Patch in Oracle Database Query to find the hints associated with a SQL Patch select cast(extractvalue(value(x), ‘/hint’) as varchar2(500)) as outline_hints from xmltable(‘/outline_data/hint’ passing (select xmltype(comp_data) xml from sys.sqlobj$data where signature = (select EXACT_MATCHING_SIGNATURE from v$sql where sql_id = ‘&SQL_ID’))) x; How to find all …

Top SQL Patch Queries in Oracle Database Read More »

Scroll to Top