Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Questions for DBAs
Hi!!!!
Here's some helpful idea...
> - what is the query to find out which queries
> are currently running
select a.sql_text
from v$session s, v$process p, v$sqlarea a
where s.paddr = p.addr and s.type != 'BACKGROUND' and s.process = [OS_PROCESS_NUMBER] and s.sql_address = a.address
>
> - what is the query to find out how much "space"
> a user currently available to them (or is left for
> everyone)
> ??
What you mean "space"? Received on Fri Jun 25 1999 - 20:00:16 CDT
![]() |
![]() |