Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.tools -> Re: How to find Space Used???
REM *********************************
REM *********************************
select a.tablespace_name ts, a.file_id, sum(b.bytes)/count(*) bytes,
sum(b.bytes)/count(*) - sum(a.bytes) used, sum(a.bytes) free, nvl(100-(sum(nvl(a.bytes,0)))/ sum(nvl(b.bytes,0))/count(*)*100,0) pct_usedfrom dba_free_space a,
Try this....
Greg Vitetzakis V Greg Vitetzakis V.P. Professional Services OSTnet (Open
Source Technologies Inc.) (514) 278-7678 x246 www.ostnet.com
"Charles McDonald" <cmcdon12_at_nospam.ford.com> wrote in message
news:3A9E442B.682B929D_at_nospam.ford.com...
> Hello there all
>
> I need to determine the total space used by my dB. Is there anyone out
> there who will share this know how with me please?
>
> Charles
Received on Thu Mar 01 2001 - 10:59:43 CST
![]() |
![]() |