Display Oracle v$session_longops sessions" SQL Code 1set lines 100 pages 999 2col username format a15 3col message format a40 4col remaining format 9999 5select username 6, to_char(start_time, 'hh24:mi:ss dd/mm/yy') started 7, time_remaining remaining 8, message 9from v$session_longops 10where …
Read More