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!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Autoextend OFF/ON

762809Nov 12 2010 — edited Nov 12 2010
Hi friends,


I have the following data_files info list in our PROD database:
select file_name,tablespace_name,bytes/1024,AUTOEXTENSIBLE,status from dba_data_files order by tablespace_name;

/uo1/oracle/oatrngdata/a_txn_data04.dbf  APPS_TS_TX_DATA                  11,888,640Kb YES AVAILABLE
/uo1/oracle/oatrngdata/a_txn_data02.dbf  APPS_TS_TX_DATA                   1,283,840Kb YES AVAILABLE
/uo1/oracle/oatrngdata/a_txn_data01.dbf  APPS_TS_TX_DATA                   1,481,600Kb YES AVAILABLE
/uo1/oracle/oatrngdata/a_txn_data03.dbf  APPS_TS_TX_DATA                   1,202,560Kb YES AVAILABLE
Note that data04.dbf is already 11G, I believe its autoextend on, but upto now I really do not know which data dictionary column tells that It was the active autoextended on data file, because I know all of them are set to autoextend on.

I want data04.dbf to stop autoextending, and shift it to data03.dbf using:

ALTER DATABASE DATAFILE '/uo1/oracle/oatrngdata/a_txn_data04.dbf' AUTOEXTEND OFF;

ALTER DATABASE DATAFILE '/uo1/oracle/oatrngdata/a_txn_data03.dbf' AUTOEXTEND ON ( I think no need to do this one because they are all set to "autoextend on".

Will this be okay? I planning that each data files will have a uniform size of 11g.
My question is, since all the data files have been set to "AUTOEXTEND ON", if I turn off the data04.dbf,
which of the 3 remaining will get activated then?


Thanks a lot for your kind assistance...

Ms K
This post has been answered by Helios-GunesEROL on Nov 12 2010
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Dec 10 2010
Added on Nov 12 2010
12 comments
35,217 views