ORA-00059: maximum number of DB_FILES exceeded
ORA-00059: maximum number of DB_FILES exceeded
1.SQL> show parameter db_files
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
db_files integer 200
2.DB shutdown;
3.startup nomount;
alter system set db_files=2000 scope=spfile;
4.DB shutdown;
5.DB startup;