free space [message #60160] |
Tue, 20 January 2004 03:48 |
bath
Messages: 1 Registered: January 2004
|
Junior Member |
|
|
how can i get the free space in a tablespace?
thanks
|
|
|
Re: free space [message #60161 is a reply to message #60160] |
Tue, 20 January 2004 04:00 |
croca
Messages: 50 Registered: January 2004
|
Member |
|
|
You can resize the datafile, you can COALESCE to pack free contiguous space into ONE big space...
example:
alter database datafile '/u01/oradata/datafile.dbf' resize 300M;
you must first select from dba_data_files to get the file name and size.
Regards
C.J.R.
www.otools.com.ar
|
|
|
|