Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

How can I find a segment name from p1 and p2 value of v$session??

510293Oct 3 2007 — edited Oct 4 2007
Hi, all.

A session is waiting with "gc cr request".

The pvalue of the session are as followings.

---------------------------------------------------------
p1text p1 p2text p2 p3text p3
---------------------------------------------------------
file# 15 block# 412 id# 33619969
---------------------------------------------------------

I issued the following sql statement to find the segment name.

select segment_name
from dba_extents
where file_id = 15
and 412 between block_id and (block_id + blocks -1)
/

However, No row returned.

Is there any mistake??

Thanks and Regards.
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Nov 1 2007
Added on Oct 3 2007
2 comments
3,808 views