Ce script SQL permet d'afficher les opérations les plus gourmandes en terme de CPU SET echo off SET feedback off SET linesize 512 prompt ---------------------------------- prompt - plus grandes consommation CPU -- prompt ---------------------------------- COLUMN sid format 999 heading "SID" COLUMN username format a20 heading "Utilisateur" COLUMN command format a20 heading "Commande" COLUMN osuser format a20 heading "Utilisateur OS" COLUMN process format a20 heading "Processus OS" COLUMN machine format a20 heading "Machine" COLUMN value format 99 , 999 heading "Temps CPU" SELECT s . sid sid , s . username username , UPPER ( DECODE ( command , 1 , 'Create Table' , 2 , 'Insert' , 3 , 'Select' , 4 , 'Create Cluster' , 5 , 'Alter Cluster' , 6 , 'Update...