Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.tools -> Re: How to find Space Used???

Re: How to find Space Used???

From: Marcin Buchwald <velvet_at_gazeta.pl>
Date: Thu, 01 Mar 2001 15:52:35 +0100
Message-ID: <3A9E6233.2007D808@gazeta.pl>

try this:

select n.file#, n.name, to_char(d.creation_time,'DD/MM/RRRR HH24:MI:SS'), d.bytes, f.fc from v$dbfile n, v$datafile d, (select file_id, sum(bytes) fc from dba_free_space group by file_id) f where n.file#=d.file# and d.file#=f.file_id Received on Thu Mar 01 2001 - 08:52:35 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US