Toral Inactive Sessions More Than 1Hour

Toral Inactive Sessions More Than 1Hour

col program FOR a30
col inactive_programs FOR a40
SELECT s.program,
Count (s.program) Inactive_Sessions_from_1Hour
FROM gv$session s,
v$process p
WHERE p.addr=s.paddr
AND s.status=’INACTIVE’
AND s.last_call_et > (3600)
GROUP BY s.program
ORDER BY 2 DESC;

Read More Articles

Inactive Programs With Disk Reads Prompt Inactive Sessions

Inactive Programs

Total Inactive Sessions

Total Count Of Sessions Ordered By Action

Total Count Of Sessions Ordered By Module

Total Sessions Count Ordered By Program

Count Of Active Sessions

Sessions Which Are In Inactive Status From More Than 1 HOUR

SQL Queries to Check Active or Inactive Sessions

Query To Find Database Redolog Temp And Control File Size

Query To Find Database Size

Query To Find Long Running SQL Statements

Query To Find Undo Tablespace Usage

Query To Check For Table Locks

Query To Find Active Sessions In Database

Query To Check Users Sessions CPU and IO Consumption

Query To Check Open Cursor By User

Query To Check Top 10 Database Load Queries

Query To Check List Of Locks In The Database

Query To Check Blocking Sessions Per User

Query To Check Size Of All Tablespaces

Query To Find The Details of The Accounting Flexfield Structure

Query To Find a Scheduled Job for a particular program

How to Find Scheduled Concurrent Program

How to Find The Request Group Associated with a Program

Query To Find Global Locks

Query To Check Web Sessions

Query To Verify Workflow IMAP Setting

Query To Find Complete Database Size

Query To Find Find EBS Profile Options For All Values

Query To Find Number Of Users Connected To EBS

Query To Find Who Is Connected When to Which Responsibilities

Query For Workflow Mailer Configurations

Query To Find All Responsibilities Assigned To a User

Query To Find All Users Assigned To Given Responsibility

Query To Find All Reports Registered Within Given Application

Query To Find Responsibility Name from a Concurrent Program

Query Count the number of reports registered In Each Module

Query To Find Scheduled Concurrent Request

Query To Find All Reports Status With User Name

Query To Count Pending Request

Query To find Concurrent Program Name, Phase Code And Status Code for a given Request ID

Query To Find a Concurrent Program Enabled with Trace

Query To Find Request Submitted By User

Query To Find Pending Request in Oracle Apps dba

Query To Find the Reports Finished With Error Code In Oracle Apps DBA

Terminating Report From Backend

Query To Check Total Scheduled Requests

Leave a Comment