select * from
(select sid, serial#, opname, to_char(start_time,'yyyymmdd hh24:mi:ss') st,
TRUNC((sofar/totalwork) * 100) as percent_complete,START_TIME,TIME_REMAINING
from v$session_longops
order by start_time desc)
where rownum<=10
;
'Database & SQL > Oracle' 카테고리의 다른 글
VKTM detected a time drift. 발생시 (0) | 2024.03.25 |
---|---|
Oracle 통계정보 Lock (0) | 2021.08.13 |
인덱스 parallel 여부 확인 (0) | 2021.07.09 |