Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

how to enable AUTOEXTENSIBLE for existing tempary tablespace?

HygeiaSep 21 2011 — edited Sep 21 2011
Hi,

There is the requirement that the TEMP tablespace are autoextensible in the existing database.

here is the result:

select count(*) from dba_temp_files where tablespace_name='TEMP' and AUTOEXTENSIBLE <> 'YES';

COUNT(*)
----------------------
1

select FILE_NAME, TABLESPACE_NAME, AUTOEXTENSIBLE from dba_temp_files where tablespace_name='TEMP';



FILE_NAME TABLESPACE_NAME AUTOEXTENSIBLE
---------------------------------------------- ------------------------------ --------------
/oracle/ora_data/data/FMW1U/temp_01.dbf TEMP NO


My question is how can I enable AUTOEXTENSIBLE for this TEMP tablespace?

Cheers
Julia
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Oct 19 2011
Added on Sep 21 2011
3 comments
354 views