Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Q: Rollback segment
EAL wrote:
>
> Hi netters. Is there a way to determine which process is using which
> rollback segment? Thanks.
Yes.
select sid, username, segment_id from v$session, v$transaction, dba_rollback_segs where taddr=addr and xidusn=segment_id;
This will list SID, username and the segment_id for each current transaction. Join to v$process as required.
Colin Polykett polyketc_at_bibip1.wgw.bt.co.uk Certified Oracle DBA Received on Mon Apr 28 1997 - 00:00:00 CDT
![]() |
![]() |