Running Oracle with ACS
im in a situation where I have an oracle tablespace on a volume which
has minimal diskspace
Im required to move 5 large tables from this tablespace to a new
tablespace on a different volume.
I
exp ts1/pwd tables=table1 file=table1.dmp
imp ts2/pwd tables=table1 file=table1.dmp
on ts1 I drop or truncate table1 and then
alter database table1 '/ora8/m02/oradata/ora8/ts1.dbf' resize 1600M;
its not showing reduced space usage for ts1, in fact when I imp to
ts2 df -k shows greater disk usage on ts1's volume
how can I reclaim this space from the dropped tables on ts1 ?
TIA...