oracle查詢cpu個數(shù) 如何在oracle數(shù)據(jù)庫中查詢cpu消耗?
如何在oracle數(shù)據(jù)庫中查詢cpu消耗?select * from (select sql_text,sql_id,cpu_time from v$sql order by cpu_time des
如何在oracle數(shù)據(jù)庫中查詢cpu消耗?
select * from (select sql_text,sql_id,cpu_time from v$sql order by cpu_time desc) where rownum<=10 order by rownum asc select * from (select sql_text,sql_id,cpu_time from v$sqlarea order by cpu_time desc) where rownum<=10 order by rownum asc