Skip to content
pvmehta.com

pvmehta.com

  • Home
  • About Me
  • Toggle search form
  • DBMS_SQL for alter session. Oracle
  • Adding addidional hard drive and attach it to a linux box. Linux/Unix
  • Roles and Stored Procs II Oracle
  • All About oracle password and security from metalink Oracle
  • Python class import from different folders Python/PySpark
  • How to Modify the statistics collection by MMON for AWR repository Oracle
  • Kernel Parameters for Solaris Linux/Unix
  • CTAS with LONG Column for 7.x and 8 and 8i Oracle
  • Kill a session dynanically using execute immediate Oracle
  • Mutating Table Error while using database trigger Oracle
  • Gather Stats manually using DBMS_STATS after disabling DBMS_SCHEDULER jobs as previous entry Oracle
  • SQL Server: How to see current transactions or requests SQL Server
  • Formatter Explain plan Output 1 Oracle
  • fdisk -l explaination about Primary-Logical-Extended Partitions Linux/Unix
  • create a folder in multiple places Linux/Unix

findinfo.sql (SQL for getting CPU and Active session info)

Posted on 27-May-2025 By Admin No Comments on findinfo.sql (SQL for getting CPU and Active session info)
set lines 120 pages 200
col dd format a20
col inst_id format 99
col metric_name format a30
col value format 99.99
select x.dd, x.inst_id, x.metric_name, x.value "%CPU", y.sess
from
(select to_char(sysdate, 'DD-MON-RRRR:HH24:MI') DD, inst_id, metric_name, value
from gv$sysmetric
where metric_name like 'Host CPU Utilization%' and group_id=2 ) x,
(select inst_id, count(1) sess from gv$session
where status = 'ACTIVE' and osuser != 'oracle'
group by inst_id) y
where x.inst_id = y.inst_id
order by x.inst_id;
Oracle, SQL scripts

Post navigation

Previous Post: SQL Tracker by SID sqltrackerbysid.sql
Next Post: Drop specific SQL plan baseline – spm

Related Posts

  • ORA-4031 issue and solution on 09-MAY-2008 Oracle
  • DBMS_STATS Metalinks Notes Oracle
  • Clean up Oracle
  • Mutating Table Error while using database trigger Oracle
  • How to analyze statspack or AWR report. Oracle
  • Oracle 11g Environment Setup Oracle

Leave a Reply Cancel reply

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

Categories

  • Ansible (0)
  • AWS (2)
  • Azure (1)
  • Linux/Unix (149)
  • MYSQL (5)
  • Oracle (393)
  • PHP/MYSQL/Wordpress (10)
  • POSTGRESQL (0)
  • Power-BI (0)
  • Python/PySpark (7)
  • RAC (17)
  • rman-dataguard (26)
  • shell (149)
  • SQL scripts (342)
  • SQL Server (6)
  • Uncategorized (0)
  • Videos (0)

Recent Posts

  • Trace a SQL session from another session using ORADEBUG30-Sep-2025
  • SQL Server Vs Oracle Architecture difference25-Jul-2025
  • SQL Server: How to see historical transactions25-Jul-2025
  • SQL Server: How to see current transactions or requests25-Jul-2025
  • T-SQL Vs PL/SQL Syntax25-Jul-2025
  • Check SQL Server edition25-Jul-2025
  • Checking SQL Server Version25-Jul-2025
  • Oracle vs MYSQL Architecture differences (For DBAs)24-Jul-2025
  • V$INSTANCE of Oracle in MYSQL24-Jul-2025
  • Day to day MYSQL DBA operations (Compared with Oracle DBA)24-Jul-2025

Archives

  • 2025
  • 2024
  • 2023
  • 2010
  • 2009
  • 2008
  • 2007
  • 2006
  • 2005
  • db_status.sql Oracle
  • How to remove blank lines using vi editor command Linux/Unix
  • scripts to take listener.log backup Linux/Unix
  • Privilege to describe the table. Oracle
  • How to find password change date for user Oracle
  • OEM-Commnds Oracle
  • Drop all SPM baselines for SQL handle Oracle
  • ORA-4031 issue and solution on 09-MAY-2008 Oracle

Copyright © 2025 pvmehta.com.

Powered by PressBook News WordPress theme