Ora-0059: max no.of db_files exceeded

hi.
my db is in archivelog mode(24x7).
i tried to add data file to my tablespace
i got the following error
ora-oo59: max no of db_files exceeded.
plz tel me step by step how to change the db_files parameter
in what state
when i have to take backup of control file
then again how i have to open the database.
my current db_files value is 400 .
i need atleast 600.
thanks and regards
suresh

DB_FILES is a static parameter, and cannot be change online. Restarting the db is required.<br>
alter system set db_files=600 scope=spfile;
shutdown immediate
startup<br>
<br>
Nicolas.

Similar Messages

  • Cloning problem:  ORA-00059: maximum number of DB_FILES exceeded

    Hi everyone!
    I'm trying to clone our data warehouse over an existing test instance, DMART01. Here's what I did:
    1. on the data warehouse - alter database backup controlfile to trace;
    2. edited the trace file to change the db name and path of the datafiles
    3. logon to sqlplus in DMART01 and run my altered trace file.
    4. Below is the error I'm getting:
    SQL> @clone09142009.sql
    ORACLE instance started.
    Total System Global Area 1358954496 bytes
    Fixed Size 2128280 bytes
    Variable Size 1203668584 bytes
    Database Buffers 150994944 bytes
    Redo Buffers 2162688 bytes
    CREATE CONTROLFILE REUSE SET DATABASE "DMART01" RESETLOGS NOARCHIVELOG
    ERROR at line 1:
    ORA-01503: CREATE CONTROLFILE failed
    ORA-00059: maximum number of DB_FILES exceeded
    ORA-01110: data file 211:
    '/data/oracle/dmart01/d05/oracle/dmart01data/DW_PROD_MEDIUM11.dbf'
    In my trace file it has
    CREATE CONTROLFILE REUSE SET DATABASE "DMART01" RESETLOGS NOARCHIVELOG
    MAXLOGFILES 16
    MAXLOGMEMBERS 2
    MAXDATAFILES 500
    MAXINSTANCES 1
    MAXLOGHISTORY 1816
    Additional information - the data warehouse has an entire tablespace with many datafiles that I don't want in DMART01. I edited those datafile lines out of my trace file. Could some remnants of that be causing my problems? The DB_FILES parameter in the warehouse is set to 500. In DMART01 it's only 200. In the clone, I only want to bring over 61 datafiles. Besides, I thought that in the create controlfile statement would set the parameter, in this case to 500.
    I'm stumped. Any suggestions?
    Thanks!
    Sharon

    I answered my own question. If anyone is curious, here's what I did:
    in DMART01
    1. startup nomount;
    2. create pfile from spfile;
    3. shutdown immediate;
    4. edited pfile to have dw_files=500
    5. startup nomount pfile=initDMART01.ora;
    6. create spfile from pfile;
    7. shutdown immediate;
    8. @clone09142009.sql

  • Install HRCS9.0 and PT8.53 with Linux Issue: the files intiPT853.ora and initHRCS90.ora: maximum number of DB_FILES exceeded

    Folks,
    Hello. I have installed PeopleTools 8.53 with Oracle Linux 5.10 successfully. The entire PeopleTools  runs correctly in browser at the beginning.
    After I set up HCM and Campus Solution 9.0 Database Instance named HRCS90 in Linux successfully, PeopleTools 8.53 Database Instance PT853 cannot be mounted. Its error message is below:
    SQL> startup
    ORACLE instance started.
    Total System Global Area  538677248 bytes
    Fixed Size                  2146024 bytes
    Variable Size             528482584 bytes
    Database Buffers            4194304 bytes
    Redo Buffers                3854336 bytes
    ORA-00059: maximum number of DB_FILES exceeded
    In the file /home/user/OracleDB_Home/dbs/initPT853.ora, its parameter db_files has 3 values: small 400, medium 1021 and large 1500. The initial value is 1021 and it works correctly at the beginning.  But after set up another instance HRCS90, the above error message comes up and instance PT853 cannot mounted. I change the value of db_files from 1021 to 1500 in the file initPT853.ora and restart OS Linux. But get the same error as below:
    SQL> startup
    ORACLE instance started.
    Total System Global Area  538677248 bytes
    Fixed Size                  2146024 bytes
    Variable Size             528482584 bytes
    Database Buffers            4194304 bytes
    Redo Buffers                3854336 bytes
    ORA-00059: maximum number of DB_FILES exceeded
    In the file /home/user/OracleDB_Home/dbs/initHRCS90.ora, its parameter db_files has 3 values: small 80, medium 400 and large 1500. I use db_files=400 and it works correctly. I start up instance HRCS90 right after the above error message as below:
    SQL> shutdown immediate
    ORA-01507: database not mounted
    ORACLE instance shut down.
    SQL> exit
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    [user@userlinux bin]$ export ORACLE_SID=HRCS90
    [user@userlinux bin]$ ./sqlplus / as sysdba
    SQL*Plus: Release 11.1.0.6.0 - Production on Sat Nov 23 12:40:02 2013
    Copyright (c) 1982, 2007, Oracle.  All rights reserved.
    Connected to an idle instance.
    SQL> startup
    ORACLE instance started.
    Total System Global Area  538677248 bytes
    Fixed Size                  2146024 bytes
    Variable Size             528482584 bytes
    Database Buffers            4194304 bytes
    Redo Buffers                3854336 bytes
    Database mounted.
    Database opened.
    SQL> select * from psdbowner;
    DBNAME   OWNERID
    HRCS90     MYNAME
    SQL>
    As we see above, the instance HRCS90 works corretly and PT853 cannot start up. The parameter DB_FILES of the file initPT853.ora has an issue.
    My question is:
    Because 1021 and 1500 are not enough to startup instance PT853, what value should be used for DB_FILES of the file initPT853.ora  ?
    Thanks.

    user8860348 wrote:
    Folks,
    Hello. I have installed PeopleTools 8.53 with Oracle Linux 5.10 successfully. The entire PeopleTools  runs correctly in browser at the beginning.
    After I set up HCM and Campus Solution 9.0 Database Instance named HRCS90 in Linux successfully, PeopleTools 8.53 Database Instance PT853 cannot be mounted.... 
    I'm sorry, but I don't understand what does "Instance" mean here.
    >In the file /home/user/OracleDB_Home/dbs/initPT853.ora, its parameter db_files has 3 values: small 400, medium 1021 and large 1500.
    Are you not using a spfile ? Does the file contain really the 3 values ? What is the last ? Have you checked the value in the database side "show parameter db_files" ?
    >But after set up another instance HRCS90, the above error message comes up and instance PT853 cannot mounted
    Again, I have no idea what it means.
    >In the file /home/user/OracleDB_Home/dbs/initHRCS90.ora, its parameter db_files has 3 values: small 80, medium 400 and large 1500. I use db_files=400 and it works correctly.
    Again, 3 values ? What is the last ? Have you checked the value in the database side "show parameter db_files" ?
    >As we see above, the instance HRCS90 works corretly and PT853 cannot start up. The parameter DB_FILES of the file initPT853.ora has an issue.
    Again, I don't understand what are HRCS90 and PT853 exactly. Cannot help.
    >Because 1021 and 1500 are not enough to startup instance PT853, what value should be used for DB_FILES of the file initPT853.ora  ?
    I'm sure, you don't have an issue with this parameter, 1500 files in the database is quite huge number. I built a demo recently, the default value 1021 was ok for me. You should have done something wrong somewhere.
    Nicolas.

  • Hyperion Financial Reports Studio Error. Max No of connections exceeded.

    I have encountered an error in FR Studio, it says Max No of Connections Exceeded.
    It occured twice in this month, everytime it happens we need to restart Reporting and Analysis Framework. Can someone suggest where can I increase the max no of connections allowed?

    Ok...My bad..
    You will have tun serviceconfig.sh under Hyperion_Home\products\Foundation\workspace\bin to bring up GUI,then From the menu available you will see Remote service configurator,select that and provide the credentials.After you login,there should RM1 and SB1.You will have to go o properties of RM1 and SB1 and then increase the connection.Restart is required for this to take affect.
    Let me know

  • Max number of items exceeded?

    I am trying to develop a questionaire like application. Most of the logic is stored inside pl/sql functions (that is retrieving the previous or next question with possible answers and answer-types, like, eg. radiogroup, select-list, textarea, ...) while all of the questions and respective possible answers are kept inside a collection. In processing the answers after submit I store given answers inside the same collection, basically by nullifying all possibly previously given answers for the current question and then looping through eg, g_f01.count to refill. The entire application remains on the same page, showing eg., in one 'frame', one or two questions with say 7 checkboxes and two textareas.
    Everything seems to work fine, I can go forward and backward and will find new questions or ones that already have been answerd, but!!...
    after the 50st item (answer), that is after I reached the 50st radiogroup, checkbox or textarea, new checkboxes or radiogroups even though shown the resulting values will not be stored inside the collection anymore.
    generating the page i use:
    htp.prn(apex_item.radiogroup(p_idx => 1, p_value => c2.a_id, p_selected_value => c2.qa_id, p_attributes => 'id="P2_QUEST_' || i || '"'));
    and in processing correspondingly ...
    FOR i IN 1 .. apex_application.g_f01.COUNT
    LOOP
    FOR c2 IN
    (SELECT seq_id,
    c001 q_id,
    c002 a_id,
    c012 qa_id
    FROM apex_collections
    WHERE c001 = to_char(p_q_id)
    AND collection_name = 'ANSWERS'
    AND c002 = apex_application.g_f01(i))
    LOOP
    apex_collection.update_member_attribute(p_collection_name =>
    'ANSWERS', p_seq => c2.seq_id, p_attr_number => '12',
    p_attr_value => c2.a_id);
    END LOOP;
    END LOOP;
    to me I only use f01 ... f04 say, ... Is it possible that I still hit the max of 50 page-items?
    Regards
    j.

    max number of items exceeded?

  • Error"Max no of gateways exceeded (100)

    Hi All,
    We have two apps servers on our sap production system. I couldn't  login in one of the app server through SM51 .when I tested the Internal RFC in SM59 I got this error-:
    Logon     Connection Error
    Error Details     Error when opening an RFC connection
    Error Details     ERROR: max no of gateways exceeded (100)
    Error Details     LOCATION: SAP-Gateway on host hkbisrapl2 / sapgw02
    Error Details     COMPONENT: SAP-Gateway
    Error Details     COUNTER: 52597
    Error Details     MODULE: gwxxrd.c
    Error Details     LINE: 8438
    Error Details     RETURN CODE: 631
    Error Details     SUBRC: 0
    Error Details     RELEASE: 700
    Error Details     TIME: Sat Feb 14 13:00:36 2009
    Error Details     VERSION: 2
    Pls suggest me the solution.
    Regards,
    Prashant

    No, its R3 Production server. Internal RFC for one of the app server is giving this error.
    When I tried to set the following parameters in the instance profile of the same I again got the same error while saving the profile.
    Can I make the changes in instance profile of app server at OS level?
    Profile parameters-: (On Application Servers)
    rdisp/tm_max_no           5000
    rdisp/max_comm_entries       200
    Pls suggest.
    Regards,
    Prashant

  • Max no of gateways exceeded (100)

    Hi guys
    Suddenly, I start to receive error messages about the RFC failure, No changes done in Basis related.
    There are RFC error any many areas;
    SM21 -  I Maximum number of 100 connectable SAP gateways reached\
    STMS -  RFC communications error with system/destination TMSADM-PRD.DOMAIN_DEV
    Sm59 -  we cannot verify the RFC Connection
    Please advise us on base of SOS
    Regards
    Anwer Waseem

    Hi
    Thanks for the expert reply,  i did same as below described, there are 6 clients in the "logged clients" by the smgw.
    0     DBSERVER1     sapgw02     Local Web AS     DBSERVER1     ip dbserver1     Wed Jun 25 09:02:42 2008     Connection OK
    1,037     DEV     sapdp01     Remote Gateway     DEV     ip dev     Wed Jun 25 08:38:04 2008     Connection OK
    1,229     ip dbserver2     sapdp02     Remote Gateway     ip dbserver2     ip dbserver2     Wed Jun 25 09:02:12 2008     Connection OK
    1,292     QAS     sapdp01     Remote Gateway     QAS     ip qas     Wed Jun 25 08:38:04 2008     Connection OK
    1,319     DBSERVER     jlaunch     External Client     DBSERVER     ip dbserver1     Wed Jun 25 09:02:12 2008     Connection OK
    1,377     DBSERVER1     IGS.PRD     Registered Server     DBSERVER1     ip dbserver1     Wed Jun 25 09:02:38 2008     Connection OK
    RFC Trace file
    ============
    Sun Jun 22 15:01:03 2008
    ***LOG Q14=> GwIConnectHandle, max gateways (100) [gwxxrd.c     8504]
    LOCATION    SAP-Gateway on host DBSERVER1 / sapgw02
    ERROR       max no of gateways exceeded (100)
    TIME        Sun Jun 22 15:01:03 2008
    RELEASE     700
    COMPONENT   SAP-Gateway
    VERSION     2
    RC          631
    MODULE      gwxxrd.c
    LINE        8505
    COUNTER     112523
    I am unable to verify the RFC and unable to transport from QAS to PRD
    Regards

  • ORA-12801 error signalled in parallel query with ORA-00018 max # session

    Hello,
    I've just run dbca to create a new database. On completion I received the following:
    ORA-12801 error was signalled in parallel query server
    ORA-00018 maximum number of sessions exceeded
    ORA-06512 at sys_utl_recomp line 760
    ORA-06512 as sys_utl_recomp line 773
    ORA-06512 as sys_utl_recomp line 1
    The processes are set at 100, sessions is set at 115?
    Can you tell how to address this error and resolve the problem? I'm thinking that I should rerun sys_utl_recomp

    Hi,
    You didn't mention oracle version as well OS.
    might be you hit a bug.
    check the below link for reference
    https://metalink2.oracle.com/metalink/plsql/f?p=130:14:8051847734518941130::::p14_database_id,p14_docid,p14_show_header,p14_show_help,p14_black_frame,p14_font:NOT,21564.1,1,1,1,helvetica
    Regards,
    Taj

  • ORA-31044: Top-level prefix length  exceeds maximum

    Hi,
    I am trying to migrate the cube and associated view created by view generator from one environment to another environment.
    The cube is migraed through XML and it is working.
    But when we compile the view created in one environment in the target environemn after cube migration we get and error as - "ORA-31044: Top-level prefix length exceeds maximum".
    What is the resolution for this?
    Regards,
    Gurudatta

    Not sure what is happening between production and development environments, if it worked in dev it should work in production assuming no other changes were made to the data model. Data volumes should not be an issue. When you are testing the view are you using a WHERE clause to limit the number of rows returned? Try just returning the top level for each dimension, the 'All' dimension member as this will return just one row (or one row for each year if you have a time dimension with year as the top level).
    Keith Laker
    Oracle EMEA Consulting
    BI Blog: http://oraclebi.blogspot.com/
    DM Blog: http://oracledmt.blogspot.com/
    BI on Oracle: http://www.oracle.com/bi/
    BI on OTN: http://www.oracle.com/technology/products/bi/
    BI Samples: http://www.oracle.com/technology/products/bi/samples/

  • "ORA-01144: File size (7680000 blocks) exceeds maximum of 4194303 blocks.

    Hi Team,
    While increasing the tablespace i am getting below error. How to handle this any one please suggest.
    SQL> set lin 300
    SQL> col TABLESPACE_NAME for a25
    SQL> col FILE_NAME for a65
    SQL> select TABLESPACE_NAME,FILE_ID,FILE_NAME,AUTOEXTENSIBLE,sum(BYTES/1024/1024) MB
    2 from dba_data_files where TABLESPACE_NAME='SYSAUX' group by TABLESPACE_NAME,FILE_ID,FILE_NAME,AUTOEXTENSIBLE order by sum(BYTES/1024/1024) DESC,file_name;
    TABLESPACE_NAME FILE_ID FILE_NAME AUT MB
    SYSAUX 3 /ora2/oradata/dbname/sysaux_01.dbf NO 300
    SQL> Alter database datafile 3 RESIZE 60000M;
    Alter database datafile 3 RESIZE 60000M
    ERROR at line 1:
    ORA-01144: File size (7680000 blocks) exceeds maximum of 4194303 blocks
    Regards,

    941829 wrote:
    Hi Team,
    While increasing the tablespace i am getting below error. How to handle this any one please suggest.
    SQL> set lin 300
    SQL> col TABLESPACE_NAME for a25
    SQL> col FILE_NAME for a65
    SQL> select TABLESPACE_NAME,FILE_ID,FILE_NAME,AUTOEXTENSIBLE,sum(BYTES/1024/1024) MB
    2 from dba_data_files where TABLESPACE_NAME='SYSAUX' group by TABLESPACE_NAME,FILE_ID,FILE_NAME,AUTOEXTENSIBLE order by sum(BYTES/1024/1024) DESC,file_name;
    TABLESPACE_NAME FILE_ID FILE_NAME AUT MB
    SYSAUX 3 /ora2/oradata/dbname/sysaux_01.dbf NO 300
    SQL> Alter database datafile 3 RESIZE 60000M;
    Alter database datafile 3 RESIZE 60000M
    ERROR at line 1:
    ORA-01144: File size (7680000 blocks) exceeds maximum of 4194303 blocks
    Regards,You must know that its really important to mention your db version and other details so that we can answer in a more proper manner. Since you haven't mentioned your db size and block size so here is a generic reply. If you are using 8kb Blocksize,you should be able to go till 32gb of one file(8192*4194303/1024/1024=>32G). So your solution would be to either go for a different file or use Big File(if you are on 10g and above) .
    HTH
    Aman....

  • ORA-01144: File size (4194304 blocks) exceeds maximum of 4194303 blocks

    Hello all,
    Wen i try to add new datafile(32GB) to tablespace i found the below error. I have space available in my disk, why i am not able to add new datafile to tablespace?
    ERROR at line 1:
    ORA-01144: File size (4194304 blocks) exceeds maximum of 4194303 blocks
    here is my db_block_size information:
    NAME TYPE VALUE
    db_block_size integer 8192
    How can i add new datafile with out any issues.
    Regards,
    RHK

    Thanks,
    I minimise the size, now i am able to add new datafile.
    From long time back i am getting below error,
    ORA-1653: unable to extend table PQB_ADMIN.RPT_TR by 128 in tablespace USERS
    ORA-1653: unable to extend table PQB_ADMIN.RPT_TR by 8192 in tablespace USERS
    to avoid this error i added new datafile. Now the data will sync automatically? (it may be nearly 2 months data)
    Regards,
    RHK

  • Max. number of expressions exceeded

    I have a simple SQL to select data from a single table with a
    list of 1000 elements i.e. SELECT A FROM TABLE_A WHERE B IN (1,
    2, 3, ..., 1000). It worked fine. If I added one more i.e.
    WHERE B IN (1, 2, 3, ...., 1000, 1001), then I got error 1795 -
    Max number of expressions exceeded 254. I thought this error
    applies to the number of expressions. What I have was a list of
    values in a single expression -> B IN (1, 2, ...).
    I think the error message is misleading. If there is a limit of
    1000 elements in the IN expression, the error message should say
    so unlesss Oracle somehow formats the 1000 elements into 254
    expressions behind the scene.
    Any comments.
    Thanks.
    null

    What versions are you using?
    Do you have a License?
    thanks
    mike

  • Error in Oracle Apex 4.2:GET_STMT error. ORA-56720: I/O data limit exceeded

    Dear Experts
    I have a workspace on apex.oracle.com
    I tried to copy an application. It gives me
    GET_STMT error. ORA-56720: I/O data limit exceeded - call aborted:281:0
    ORA-56720: I/O data limit exceeded - call aborted
    How to solve this?
    Best Regards
    Mahmoud

    mahmoudrabie wrote:
    Dear fac586
    I found the solution in the following steps
    1) Export (Backup) your report queries and report layouts
    2) Delete them from the shared components
    3) Copy the application
    4) Import them again to both applicationsThis may provide a workaround in your immediate situation, but the error message is indicative of an underlying problem in APEX 4.2 (as described in Joel's post). Please edit the Subject line of your original post to include "APEX 4.2" to help to bring this to Oracle's attention.

  • ORA-1631: max # extents 505 reached in table APPLSYS.WF_NOTIFICATION_IN

    Platform: RHEL 4u5
    Application: 11.5.10.2
    Database: 10.2.0.4
    2-node Installation as follows:
    1 Node for DB and Concurrent
    1 Node for Apps.
    We anabled OWF Mailer services on 2nd Sept, and on 5th Sep we started receiving following error messages in our DB alert log contnuously:
    ORA-1631: max # extents 505 reached in table APPLSYS.WF_NOTIFICATION_IN
    So, we stopped the OWF Mailer servcies and Agent Listeners.
    Got a metalink note 152475.1 but confused to alter the table definition as I am of the view that these Oracle Workflow related tables are Oracle Built-in Objects not the custom one.
    So, will it be ok to increase the Maxextents for this table?

    911748 wrote:
    Hi Asif,
    We have actually implemented it on Production now. We just tested the mailer configuration on TEST and when users give go ahead after they tested their scenarios we implemented the same on Production. Can I implement the extents increment activity on production?
    Yes you can.
    Thanks,
    Hussein

  • ORA-01693-Max extents reached in lobsegment

    Hi
    getting this error in our alert log file
    ORA-01693-Max extents <> reached in lobsegment <name>
    Can any tell me how to increase (alter) logsegment
    Thanks
    Bhanu

    alter table <table> modify lob (<lobcolumn>) (storage (maxextents unlimited))
    will work

Maybe you are looking for

  • Installer does not launch LR 5.7 It makes a feeble attempt but then quits without installing the downloads. How can I correct this?

    Hi: I have been trying for several hours, in fact all day and into the late evening, trying to get Creative Cloud back to its usually helpful self. My older laptop finally gave up on me but it still holds over 2000 of my recent images and I want to g

  • Formatting date of Presentation Variable in Report title

    Hi I have the following presentation variable, @{PR_WE_DATE}{Week End Date}, in a report title. However the date format shown in the title is different from the format in the prompt. In the report title the date format is YYYY-MM-DD however I want to

  • OIA Upload Jasper Report

    Hi guys, I created using iReport (Jasper) a new jrxml... When I try to upload a new custom report OIA return "File already exists" but is not true! On a linux machine the permission are correct and the file does not exists on file system. Have you so

  • Having problem connecting to the livecache server from APO instance

    Could not able to connect to the live cache server from the APO server after installing both the instances separately on two different systems, while using the T-code LC10 to make a connection from APO DDIC login its displaying the following message

  • Multicolored JTextPane

    I am using a JTextPane to display a online report. Each new line / set of new lines signify a record in the report. Since there could be variable number of records all with variable number of lines it becomes difficult to distinguish between records.