Posts Tagged ‘OracleDBA’

Oracle Database 23AI Session Related Scripts.

December 1st, 2025, posted in Oracle Queries
Share

Share

Set The Schema Session Limit In Oracle 23 AI Database

November 9th, 2025, posted in Oracle Queries
Share

SQL > CREATE PROFILE limited_sessions_profile LIMIT SESSIONS_PER_USER 40;

Share

ORA-06512 : at “SYS.DBMS_ISCHED”

November 2nd, 2025, posted in Oracle Queries
Share
Share

Restore The Drop Table In 19c Oracle Autonomous Data Warehouse

October 12th, 2025, posted in Oracle Queries
Share
SQL > FLASHBACK TABLE your_table_name TO BEFORE DROP;
SQL > FLASHBACK TABLE TABLE_NAME TO BEFORE DROP;
Share

Find All Scheduled Requests in EBS R12.2.10

October 5th, 2025, posted in Oracle EBS Application, Oracle Queries
Share

SELECT request_id id,
nvl(meaning, 'UNKNOWN') status,
user_concurrent_program_name pname,
to_char(request_date, 'DD-MON-RR HH24:MI:SS') submitd,
to_char(requested_start_date, 'DD-MON-RR HH24:MI:SS') requestd
FROM fnd_concurrent_requests fcr,
fnd_lookups fl,
fnd_concurrent_programs_vl fcpv
WHERE phase_code = 'P'
AND (fcr.requested_start_date >= sysdate OR
status_code = 'P')
AND LOOKUP_TYPE = 'CP_STATUS_CODE'
AND lookup_code = status_code
AND fcr.concurrent_program_id = fcpv.concurrent_program_id
AND fcr.program_application_id = fcpv.application_id
ORDER BY request_date, request_id;





Share