PROBLEM:

While enabling autoextend for an tablespace, got error like ORA-32773: operation not supported for small file table space.
SQL> alter tablespace SMALLTS autoextend on;
alter tablespace SMALLTS autoextend on
*
ERROR at line 1:
ORA-32773: operation not supported for smallfile tablespace SMALLTS

 

SOLUTION:

A standard tablespace(i.e smallfile tablespace) can multiple datafiles, So if you want to enable/disable auto extend , then it need to done for each datafile of the tablespace. It cannot done directly on the tablespace.
SQL> select tablespace_name,BIGFILE from dba_tablespaces where tablespace_name=-SMALLTS-;

TABLESPACE_NAME                BIG
---------- -
SMALLTS                         NO

 

SQL>select tablespace_name,file_name,AUTOEXTENSIBLE from dba_data_files where tablespace_name=-SMALLTS-

TABLESPACE_NAME FILE_NAME AUT
-------- ----------------------- -
SMALLTS /dmdata02/oradata/BSDMSIT2/smallts01.dbf NO
SMALLTS /dmdata02/oradata/BSDMSIT2/smallts02.dbf NO

 

SQL> Alter database datafile -/dmdata02/oradata/BSDMSIT2/smallts01.dbf- autoextend on;
Database altered;

SQL> Alter database datafile -/dmdata02/oradata/BSDMSIT2/smallts02.dbf- autoextend on;
Database altered;

 

SQL>select tablespace_name,file_name,AUTOEXTENSIBLE from dba_data_files where tablespace_name=-SMALLTS-

TABLESPACE_NAME FILE_NAME AUT
-------- ----------------------- -
SMALLTS /dmdata02/oradata/BSDMSIT2/smallts01.dbf YES
SMALLTS /dmdata02/oradata/BSDMSIT2/smallts02.dbf YES

 

However for BIGFILE TABLESPACE , we can do this at tablespace level also , Because it can contain only one datafile.
SQL> create bigfile tablespace BIGTS datafile -/dmdata02/oradata/BSDMSIT2/bigts01.dbf- size 1G;

Tablespace created.

SQL> select tablespace_name,file_name,AUTOEXTENSIBLE from dba_data_files where tablespace_name=-BIGTS-;

TABLESPACE_NAME FILE_NAME AUT
-------- ----------------------- -
BIGTS /dmdata02/oradata/BSDMSIT2/bigts01.dbf NO

SQL> select tablespace_name,BIGFILE from dba_tablespaces where tablespace_name=-BIGTS-;

TABLESPACE_NAME         BIG
-------- -
BIGTS                   YES

 

SQL> alter tablespace BIGTS autoextend on;

Tablespace altered.

 

SQL> select tablespace_name,file_name,AUTOEXTENSIBLE from dba_data_files where tablespace_name=-BIGTS-;

TABLESPACE_NAME           FILE_NAME                                                         AUT
-------- ----------------------- -
BIGTS                     /dmdata02/oradata/BSDMSIT2/bigts01.dbf                            YES

 

 

SEE ALSO : TABLESPACE MANAGEMENT TUTORIAL IN ORACLE DB

 

 

 

 

ORA-tablespace TROUBLESHOOTING


Related Topics

ORA-16855: transport lag has exceeded specified threshold
ORA-20101: TABLESPACE is not a ASSM (Automatic Segment Space Management) tablespace
ORA-02304: invalid object identifier literal while import with CREATE TYPE OID
ORA-30034: Undo tablespace cannot be specified as temporary tablespace
ORA-01536: space quota exceeded for tablespace
ORA-32773: operation not supported for smallfile tablespace
TNS-12542: TNS:address already in use
TNS-01106: Listener using listener name has already been started
ORA-32771: cannot add file to bigfile tablespace
ORA-32774: more than one file was specified for bigfile tablespace

You May Also Like

Apply database proactive bundle patch in RAC using manual process
ERROR: No checkpoint table specified for ADD REPLICAT
_optimizer_ignore_hint
SGA TARGET ADVISORY IN ORACLE
how to Print execution time of tasks in ansible
Oracle database Security Assessment Tool
Change dbsnmp password for target db in oem 12c
How to find weblogic version in oracle weblogic 12
DEFERRED_SEGMENT_CREATION parameter in oracle
how to change archivelog destination in oracle

From This Website

How to Downgrade oracle 19C Grid to 12C GRID
How to change flash recovery area location
How to recreate MGMT database in ORACLE 12C GRID
How to install trace file analyzer( TFACTL)
orapwd tool for password file in oracle
resumable_timeout parameter in oracle database
How to change sysman password for oracle 12c cloud control
Blackout targets in OEM 12c cloud control
ERROR: permission denied for schema in postgres
How to keep or delete columns/Variable of a data frame in R