When you run out of space in a filesystem you have two choices:
- Increase the size of the filesystem.
- Move the datafile to another filesystem on a separate mount point.
If you want to move the tablespace you need to:
- Quiecse the tablespace (alter tablespace dba_temp_files offline).
- Copy the datafile to the new location.
- Rename the tablespace datafile "alter tablespace rename datafile
/oracle/temp2 to /oraclenew/temp2."
- Bring the tablespace online (alter tablespace dba_tamp_files online;)
- Nuke the old file from the fileysystem (rm temp2).
|