DBA Hub

📋Steps in this guide1/1

segments with high physical read

set pagesize 200 setlinesize 120 col segment_name format a20 col owner format a10 select segment_name,object_type,total_physical_reads from ( select owner||'.'||object_name as segment_name,object_type, value as total_physical_reads from v$segment_statistics where statistic_name in ('physical reads') order by total_physical_reads desc) where rownum <=10;

oracle configurationintermediate
by OracleDba
20 views
1

segments with high physical read

Code/Command (click line numbers to comment):

1
2
3
4
5
6
7
8
9
10
11
set pagesize 200
setlinesize 120
col segment_name format a20
col owner format a10
select segment_name,object_type,total_physical_reads
from ( select owner||'.'||object_name as segment_name,object_type,
value as total_physical_reads
from v$segment_statistics
where statistic_name in ('physical reads')
order by total_physical_reads desc)
where rownum <=10;

Comments (0)

Please to add comments

No comments yet. Be the first to comment!