desc v$sql_monitor select * from v$sql_monitor;
select count(1) from dba_objects;
col status format a20 col username format a30 col program format a30 col sql_id format a20 col sql_text format a50 select status, username, program, sql_id, sql_text from v$sql_monitor;
set linesize 200 col comm format a200 SELECt dbms_sqltune.report_sql_monitor( sql_id => '2hxhny9phgu37', report_level => 'ALL', type=>'TEXT' ) comm FROM dual;



