четверг, 24 сентября 2009 г.

Top segments (physical reads)

select * from (select OWNER, OBJECT_NAME, STATISTIC_NAME, value from V$SEGMENT_STATISTICS where statistic_name = 'physical reads' order by value desc) where rownum <= 3

Комментариев нет:

Отправить комментарий

Update BLOB

set define off DECLARE    vb1 CLOB := 'long text';    vb2 CLOB :=                 'long text';    vb3 CLOB :=              ...