Steps to increase maxium number of DB_FILES
Posted on December 16th, 2007stopsap r3
SQLPLUS
alter database backup controlfile to trace;
shutdown
exit
/oracle/…/saptrace/usertrace contains a new file ora_.trc
(the latest file).
Rename this file to create.sql (mv ora_.trc create.sql)
edit the file create.sql:
delete all lines up to STARTUP NOMOUNT
change MAXDATAFILES 1022
Then delete all lines after datafile creation.
edit $ORACLE_HOME/dbs/init[sid].ora
change db_files=1022
rename all control files.
See control files in $ORACLE_HOME/dbs/init[sid].ora
sqlplus
startup nomount
@create.sql
alter database open;
startsap r3