2nd December 2009
in
Tablespace
Unlike normal tablespaces, true temporary tablespace information is not listed in DBA_FREE_SPACE. Instead use the V$TEMP_SPACE_HEADER view:
SELECT tablespace_name, SUM(bytes_used), SUM(bytes_free)
FROM V$temp_space_hea[...]
Tags: find free space in a TEMPORARY tablespace, free size temp tablespace, TEMPORARY tablespace, uf
No Comments
1st November 2009
in
Tablespace
Oracle is the worlds most flexible database and we have many methods for renaming tablespaces and the underlying data files.
Tablespace data file rename
We can use the alter tablespace rename datafile command, but t[...]
No Comments
29th October 2009
in
Tablespace
Here are some scripts related to Tablespace Information .
Information
TABLESPACE INFORMATION NOTES:
Tablespace Name – Name of the tablespace
Initial Extent – Default initial extent size
Next Extent – D[...]
No Comments