Oracle 11G SQL Command Syntax to Check Free Space, Shrink Temporary Tablespace or Tempfile

advertisements

_____________________________________________________________________________________________________________________

The Eucharistic Miracles of the World
  1. 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
  1. SQL Command to switch off the autoextend option for tempfile

alter database tempfile '/u01/app/oracle/oradata/testdb/temp01.dbf' autoextend off;

  1. SQL command to resize a tempfile

alter database tempfile '/u01/app/oracle/oradata/testdb/temp01.dbf' resize 14g;

  1. SQL Command to shrink temporary tablespace with minimum size
Alter tablespace temp shrink space keep 1g;

  1. SQL Command to shrink tempfile
Alter tablespace temp shrink tempfile '/u01/app/oracle/oradata/testdb/temp01.dbf' keep 1g;

  1. SQL Command to shrink temporary tablespace without minimum limit.
Alter tablespace temp shrink space;

_____________________________________________________________________________________________________________________

A visitor from Omsk viewed 'How to Delete / Drop All the Tables in One / Multi' 7 mins ago
A visitor from Chennai viewed 'How to disable all constraints on a table or schem' 56 mins ago
A visitor from Delhi viewed 'How to Find out / Check SGA and PGA size of Oracle' 1 hr ago
A visitor from Louisiana viewed 'Purpose of ORAENV_ASK=NO / YES variable in Oracle' 1 hr 5 mins ago
A visitor from India viewed 'Golden Gate ggsci start manager: ERROR: Parameter ' 2 hrs 46 mins ago

0 comments:

Post a Comment

Labels

Oracle (629) Script (86) General (77) Unix (47) Blog (23) Technology (19) gadget (6) games (6) Business (3) OCI (3) SQL* Loader (3) Datapump (2)
 

acehints.com Copyright 2011-25 All Rights Reserved | Site Map | Contact | Disclaimer