Skip to content
pvmehta.com

pvmehta.com

  • Home
  • About Me
  • Toggle search form
  • Drop specific SQL plan baseline – spm Oracle
  • findinfo.sql (SQL for getting CPU and Active session info) Oracle
  • Rman Notes -1 Oracle
  • Oracle 10g Wait Model Oracle
  • oracle_env_10g_CADEV Linux/Unix
  • find_open_cur.sql Find open cursorts per session Oracle
  • Goldengate document from Porus Oracle
  • copying/removing directory with all its subdirectory Linux/Unix
  • Optimizer_Index init.ora parameter explaination. Oracle
  • How to sort list of files on basis of their sizes. Linux/Unix
  • Good links for x$ tables in oracle. Oracle
  • Composite Index creation tip from Vivek Oracle
  • How to set Processes Parameter Oracle
  • sess_server.sql Oracle
  • Find execution plan from dba_hist_sql_plan for a specific SQL_ID and PLAN_HASH_VALUE fplan.sql Oracle

Wait.sql

Posted on 04-Apr-202322-Apr-2025 By Admin No Comments on Wait.sql
/********************************************
Author: Paresh Mehta
Script Name : waitt.sql
waits order by sql start time
********************************************/
set feedback 1
set pages 2000
set lines 190
column event format a45
column machin format a12
column modul format a10
column prg format a10
column osuser1 format a10
column username format a10
column sesinfo format a15
column blockedby format a15
alter session set nls_date_format='DDMONRR:HH24:MI:SS';

select /*+ first_rows(100) */ a.sid || ',' || a.serial# || ',@' || a.inst_id sesinfo,
a.username, substr(a.osuser,1,10) osuser1, a.sql_id, sql_exec_start,
substr(substr(a.machine,instr(machine, '')+1),1,12) machin, substr(program,1,10) prg, substr(module, 1,10) modul, a.event,
blocking_session || '@' || blocking_instance blockedBy
from gv$session a
where status = 'ACTIVE'
and wait_class != 'Idle'
order by blocking_session desc, sql_exec_start desc
/

Oracle, SQL scripts Tags:data, database, databases, DBA, OCI, oracle, performance, tuning

Post navigation

Previous Post: CPU speed on Linux
Next Post: Find_planinfo.sql

Related Posts

  • Oracle Data Direct to TAPE Oracle
  • DBMS_PROFILER for tuning PLSQL programs. Oracle
  • Explain Plan Output 2 Oracle
  • Database link password in user_db_links Oracle
  • Finding Oracle Patches with opatch Oracle
  • get_aix_vmstat.ksh Oracle

Leave a Reply Cancel reply

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

Categories

  • Ansible (0)
  • AWS (2)
  • Azure (1)
  • Django (0)
  • GIT (1)
  • Linux/Unix (149)
  • MYSQL (5)
  • Oracle (402)
  • PHP/MYSQL/Wordpress (10)
  • POSTGRESQL (1)
  • Power-BI (0)
  • Python/PySpark (7)
  • RAC (18)
  • rman-dataguard (26)
  • shell (150)
  • SQL scripts (350)
  • SQL Server (6)
  • Uncategorized (3)
  • Videos (0)

Recent Posts

  • runon_allpdbs_show_conname.sh23-Apr-2026
  • runon_allcdbs_find_pdbs.sql23-Apr-2026
  • Running PDB on single node in RAC09-Apr-2026
  • find_arc.sql09-Apr-2026
  • pvm_pre_change.sql08-Apr-2026
  • find_encr_wallet.sql08-Apr-2026
  • find_pdbs.sql08-Apr-2026
  • Creating a Container Database using dbaascli08-Apr-2026
  • track_autoupgrade_copy_progress.sql01-Apr-2026
  • refre.sql for multitenant01-Apr-2026

Archives

  • 2026
  • 2025
  • 2024
  • 2023
  • 2010
  • 2009
  • 2008
  • 2007
  • 2006
  • 2005
  • DBMS_SQL for alter session. Oracle
  • SQL_PROFILE – I explaination Oracle
  • Load testing on Oracle 19C RAC with HammerDB Oracle
  • 751131.1 New Article Error 2819 While Requesting a Systemstate Dump Oracle
  • Korn Shell Arithmatic Linux/Unix
  • Shuffle an array PHP/MYSQL/Wordpress
  • Read CSV file using PySpark Python/PySpark
  • To see mem usage and CPU usage system wide. Linux/Unix

Copyright © 2026 pvmehta.com.

Powered by PressBook News WordPress theme