|
-
Yes. You can see the running SQL statement from the following statement:
select a.osuser, c.spid, a.username, a.sid, a.status,
a.program, b.sql_text
from v$session a, v$sqltext_with_newlines b, v$process c
where a.sql_address = b.address
and a.sql_hash_value = b.hash_value
and a.type != 'BACKGROUND'
and a.paddr = c.addr
order by a.status, a.osuser, a.username, a.sid, b.piece ;
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|