Check the session details for PL/SQL objects

Check the session details which used by PL/SQL objects like procedure, function, package

Check the Session Detail for PL/SQL objects

select sid, sql_id,serial#, status, username, program
from v$session
where PLSQL_ENTRY_OBJECT_ID in (select object_id
from dba_object s
where object_name in ('&PROCEDURE_NAME'));

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.