advertisements
_____________________________________________________________________________________________________________________
- SQL Command to Check Free Space in Temporary table space.
SQL> select tablespace_name ,ALLOCATED_SPACE/1024/1024/1024 allocatedGB, FREE_SPACE/1024/1024/1024 FreeGB, TABLESPACE_SIZE/1024/1024/1024 TABLESPACEGB from dba_temp_free_space;
TABLESPACE_NAME ALLOCATEDGB FREEGB TABLESPACEGB
------------------------------ ----------- ---------- ------------
TEMP 14 13.9980469 14
- SQL Command to switch off the autoextend option for tempfile
alter database tempfile '/u01/app/oracle/oradata/testdb/temp01.dbf' autoextend off;
- SQL command to resize a tempfile
alter database tempfile '/u01/app/oracle/oradata/testdb/temp01.dbf' resize 14g;
- SQL Command to shrink temporary tablespace with minimum size
Alter tablespace temp shrink space keep 1g;
- SQL Command to shrink tempfile
Alter tablespace temp shrink tempfile '/u01/app/oracle/oradata/testdb/temp01.dbf' keep 1g;
- SQL Command to shrink temporary tablespace without minimum limit.
Alter tablespace temp shrink space;
_____________________________________________________________________________________________________________________
0 comments:
Post a Comment