ORA-19802: cannot use DB_RECOVERY_FILE_DEST without DB_RECOVERY_FILE_DEST_S

Hi all,
We are using Oracle 11g R2 RAC on OEL 5.6.
After set the db_recovery_file_dest to FRA diskgroup,
I forgot to set the DB_RECOVERY_FILE_DEST_SIZE, and I've started an instance,
like this:
SQL> ALTER SYSTEM SET db_recovery_file_dest='+FRA' SCOPE=spfile;
System altered.
SQL> commit;
Commit complete.
SQL> show parameter recover
NAME                                 TYPE        VALUE
db_recovery_file_dest                string
db_recovery_file_dest_size           big integer 0
recovery_parallelism                 integer     0
SQL> shutdown immediate;
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> SQL> SQL>
SQL>
SQL>
SQL>
SQL>
SQL> startup;
ORA-19802: cannot use DB_RECOVERY_FILE_DEST without DB_RECOVERY_FILE_DEST_SIZEI need to set the DB_RECOVERY_FILE_DEST_SIZE. How can I do this?
I cannot to set this parameter when I startup with mount or nomount option.
Thank you very much!

Hi,
So, you can set the parameter DB_RECOVERY_FILE_DEST_SIZE
by using this other node:
ALTER SYSTEM SET DB_RECOVERY_FILE_DEST_SIZE=<size> SCOPE=spfile;And in the first node with problems to start the instance you can start like this:
SQL> startup;
ORACLE instance started.
Total System Global Area  835104768 bytes
Fixed Size                  2217952 bytes
Variable Size             624953376 bytes
Database Buffers          201326592 bytes
Redo Buffers                6606848 bytes
ORA-01105: mount is incompatible with mounts by other instances
ORA-19808: recovery destination parameter mismatchThe above error is normal in this moment because you must to set
the parameters on other node too, like this:
node2:
ALTER SYSTEM SET DB_RECOVERY_FILE_DEST_SIZE=<size> SCOPE=spfile;
ALTER SYSTEM SET db_recovery_file_dest='+FRA' SCOPE=spfile;
SHUTDOWN IMMEDIATE;
STARTUP;
node1:
SHUTDOWN; (again)
STARTUP; (now without any errors)
Regards. :-)

Similar Messages

  • I have two iPhones, one is a 4s and the other is a 3g. I have not used my 3g in some time now. I recently restored it but I cannot use it without a sim card, it says i have to "activate it."

    I have two iPhones, one is a 4s and the other is a 3g. I have not used my 3g in some time now. I recently restored it but I cannot use it without a sim card, it says i have to "activate it." I cannot place my iPhone 4s sim card in it (too small), and i do not want to get a new contract or sim card for an iPhone that i do not ues very much.

    Thanks for your help, but i cannot borrow a noral sim card now, my family has all up graded to iPhone 4s's, i have done this before, but one of my family had the same type of iphone so i could use theirs. Now i am the only one who still holds on to their old phone... I am not sure about buying an adapter...

  • ORA-12032: cannot use rowid column

    Hi,
    on 8.1.7 I have the following error :
    ORA-12032: cannot use rowid column from materialized view log on "string"."string"
    The solution is :
    Action: A complete refresh is required before the next fast refresh. Add ROWID columns to the materialized view log, if required.
    How can I do a complete refresh before the next fast refresh or Add ROWID columns ? How to know if Add ROWID columns is required ?
    Thank you.
    PS :
    my script is :
    START WITH TO_DATE('06-jul-2010 17:57:48','dd-mon-yyyy hh24:mi:ss')
    NEXT SYSDATE+1/24

    user522961 wrote:
    Hi,
    on 8.1.7 I have the following error :
    ORA-12032: cannot use rowid column from materialized view log on "string"."string"
    The solution is :
    Action: A complete refresh is required before the next fast refresh. Add ROWID columns to the materialized view log, if required.
    How can I do a complete refresh before the next fast refresh or Add ROWID columns ? How to know if Add ROWID columns is required ?
    Thank you.run above
    EXECUTE DBMS_MVIEW.REFRESH('MV_NAME','C');

  • ODI-1228: ORA-22950: cannot ORDER objects without MAP or ORDER method

    Simple interface between two schemas in the same oracle database (10g)
    I am trying to copy one table and do one simple lookup (in a table located in 3rd schema on the same database)
    Integration task fails on
    ODI-1228: Task messagexml_document (Integration) fails on the target ORACLE connection S2_P1.
    Caused By: java.sql.SQLException: ORA-22950: cannot ORDER objects without MAP or ORDER method
    Can anybody tell me, what I am doing wrong? Code that generate this error is just a simple INSERT with SELECT and sub SELECT with JOIN?
    I just can't find anything about this error.
    I'm stuck :-(

    I discovered that one of my fields is an XMLType field and is a part of comparison ODI do when it tries to do incremental update. The error message here is just a message from db that it can't compare XMLType fields to each other.
    Is there any way to learn ODI to not to compare by XMLType field?

  • PL/SQL: ORA-22992: cannot use LOB locators selected from remote tables

    Dear ALL,
    My O/S is Redhatlinux 5.2 and i had Migrated my Oracle databse to 11g2. But after that while i am retrieving records through dblinks from one of my other Oracle 9.2.0.8 databse it's throwing the error : PL/SQL: ORA-22992: cannot use LOB locators selected from remote tables.* This error i am getting in TOAD as well as SQL Developer.
    Can anybody tell me how to fix this error ? Because am not able to get the records.
    Also am getting another error during retrieving data from some of my tables after migrating i.e the table which having CLOB data type while am accessing to retrieve the records using select query it's throwing the error :
    +(The following error has occurred:+
    A query with LOB's requires OCI8 mode, but OCI7 mode is used.)
    If anyone having any idea kindly share.
    Thanks and Regards
    Biswa

    Hi,
    Ya what u sent that is fine. But already am using one procudure which is accessing LOB data from another databse through DBlink and working fine. But there Both the databse are 9.2.0.8.
    But while am executing the same procedure in oracle 11g where the Dblink accessing the data from Oracle 9i , there am getting this error.
    Kindly tell if u know any resolution.
    Thanks

  • Help with circumvention of ORA-01472: cannot use connect by on view with ..

    Hi,
    Any help resolving the following would be v. helpful.
    The Aim
    Produce a hierarchical report of all users and the privileges they have via the various roles they are granted.
    The SQL
    select lpad(' ', level*2,' ')|| granted_role from (select grantee, granted_role
    from dba_role_privs
    union
    select role, granted_role
    from role_role_privs
    union
    select role, privilege
    from role_sys_privs
    union
    select 'All users', username
    from dba_users)
    start with grantee='All users'
    connect by prior granted_role = grantee;
    The error
    ORA-0147: cannot use connect by on view with DISTINCT, GROUP BY, etc.
    The database
    Oracle 8.1.7.4 (Yes I know ....)
    The Solution
    [Thanks in advance]

    What if you create a table first
    create table role_grants as
        select granted_role, grantee
           from (select grantee, granted_role
                   from dba_role_privs
                 union
                 select role, granted_role
                   from role_role_privs
                 union
                 select role, privilege
                   from role_sys_privs
                 union
                 select 'All users', username
                  from dba_users)
    Then run the hierarchical report
    select lpad(' ', level*2,' ')|| granted_role
       from role_grants
       start with grantee='All users'
       connect by prior granted_role = grantee

  • ORA-01552: cannot use system rollback segment for non-system tablespace

    i try to create a table in new schema test1 and got the following error. please help.
    SQL> create table employer1 as select * from a.employer;
    create table employer1 as select * from a.employer
    ERROR at line 1:
    ORA-01552: cannot use system rollback segment for non-system tablespace 'TEST1'

    Hi,
    This is an example:
    SQL>
    CREATE UNDO TABLESPACE "UNDOTMP"
    DATAFILE 'UNDOTMP.DBF01' SIZE 100M REUSE
    AUTOEXTEND ON NEXT 51200K MAXSIZE 15000M
    ALTER SYSTEM SET undo_tablespace=UNDOTMP SCOPE=BOTH;
    Regards
    David Duenas
    Edited by: David Duenas on Jul 4, 2009 7:33 PM

  • 7.3.4 to 8.1.7  ODMA ERROR : ORA-01552: CANNOT USE SYSTEM ROLLBACK

    Trying to upgrade an old 7.3.4 database running on Aix to 8.1.7 so I can get a compatible export file to allow me to take it to 10gR2.
    I have done some work to get the init.ora file configured with the proper values but the odma fails with the following error:
    drop table dual;
    ORA-00604: error occurred at recursive SQL level 1
    ORA-01552: cannot use system rollback segment for non-system tablespace 'xxx'
    I have other rollback segments defined by my init.ora file and during a normal database startup they are online.
    When I run the 'odma' process it takes the database down and when it brings it up it only has the SYSTEM rollback segment online.
    I know this is an old configuration but anyone have any suggestions?
    I do have "audit_trail = none" in my init file.
    Update:
    Looks like to just do an exp/imp I don't need to worry about going through odma so I am just going to close this post.
    Edited by: user6445925 on 11-Apr-2013 15:23

    Looks like to just do an exp/imp I don't need to worry about going through odma so I am just going to close this post.

  • ORA-22950: cannot Order Objects without MAP or ORDER method (line 15)

    Hi
    I have created a function
    create type att_con.ind_field_value as object (s_owner varchar2(50), s_table varchar2(50), s_field varchar2(50));
    create type att_con.ind_field_value_table as table of att_con.ind_field_value;
    create or replace function fn_find_field_entries
    (s_entry IN varchar2)
    return ind_field_value_table
    IS
    found_count integer;
    t_return ind_field_value_table := ind_field_value_table();
    begin
    for cur in (select owner, table_name, column_name
    from all_tab_columns
    where owner 'SYS'
    and owner 'SYSTEM')
    loop
    execute immediate
    'select count(' || cur.column_name || ') from ' || cur.owner || '.' || cur.table_name || ' where ' || cur.column_name || ' = ' || s_entry
    into found_count;
    if found_count 0 then
    t_return.extend;
    t_return(t_return.last) := (cur.owner, cur.table_name, cur.column_name);
    end if;
    end loop;
    return t_return;
    end;
    and i am getting the above error when i try and run it with
    select * from table(att_con.fn_find_field_entries('NDUNNE'))
    anyone know what this error might mean?
    thanks in advance

    22950, 00000, "cannot ORDER objects without MAP or ORDER method"
    // *Cause:  an object type must have a MAP or ORDER method defined for
    //          all comparisons other than equality and inequality comparisons.
    // *Action: Define a MAP or ORDER method for the object type
    //

  • ORA-22950 cannot ORDER objects without MAP or ORDER method

    Hello
    I'm receiving the above error message at the BULK COLLECT point. I've pasted all relevant code below - any help much appreciated. This has got me stumped....
    Thanks in advance
    Tim
    create or replace type PROG_MEDIA_TYP as object
    (episode_id number,
    house_number varchar2))
    create or replace type t_all_prog_medias as TABLE of PROG_MEDIA_TYP
    v_All_Prog_Media t_All_Prog_Medias ;
    SELECT DISTINCT Prog_Media_Typ(Pm.Episode_Id,
    Substr(Pm.House_Number, 1, 8)) BULK COLLECT
    INTO v_All_Prog_Media
    FROM Prog_Media Pm;

    This has to do with your "distinct" keyword. If you don't use distinct, everything is OK, but if you want to use distinct, you have to tell, HOW Oracle can distinguish between two "object members".
    First, we just select any record with bulk collect:
    SQL> create or replace type emp_media_type
      2    as object (
      3      empno    number,
      4      ename    varchar2(30)
      5    )
      6  /
    Type created.
    SQL> create or replace type t_emp_media_type as table of emp_media_type;
      2  /
    Type created.
    SQL> get t
      1  declare
      2    l_all_emp_media_type    t_emp_media_type;
      3  begin
      4    select emp_media_type(empno, ename)
      5    bulk collect into l_all_emp_media_type
      6    from   emp;
      7* end;
    SQL> /
    PL/SQL procedure successfully completed.This is working nicely. But if we want to have only distinct records, we first have to tell Oracle, how this distinction can be made. That is where the ORDER function comes into play.
    SQL> drop type t_emp_media_type;
    Type dropped.
    SQL> get tt
      1  create or replace type emp_media_type
      2    as object (
      3      empno    number,
      4      ename    varchar2(30),
      5      order member function sortorder(p_emp emp_media_type) return number
          -- this is now the order function to tell Oracle how two objects can be ordered
      6*   )
    SQL> /
    Type created.
    SQL> get type2.sql
      1  create or replace type body emp_media_type as
      2    order member function sortorder(p_emp emp_media_type) return number is
      3    begin
      4      if p_emp.empno < empno then
      5        return 1;
      6      elsif p_emp.empno > empno then
      7        return -1;
      8      else
      9        return 0;
    10      end if;
    11    end;
    12* end;
    SQL> /
    Type body created.
    SQL> create or replace type t_emp_media_type as table of emp_media_type;
      2  /
    Type created.
    SQL> get t
      1  declare
      2    l_all_emp_media_type    t_emp_media_type;
      3  begin
      4    select distinct emp_media_type(empno, ename)
      5    bulk collect into l_all_emp_media_type
      6    from   emp;
      7* end;
    SQL> /
    PL/SQL procedure successfully completed.
    SQL> You see how nicely it works once you have the order function defined?

  • Cannot use macbook without charging battery

    I have a apple macbook and can only use it when it is charging. When I take the charger off, the macbook shuts down. It looks like that the internal adapter is not working anymore. It is annoying only being able to work with my macbook when connected with the charger. Does anyone have a suggestion?

    I resolved it already by booting with cmd + s
    http://osxdaily.com/2011/08/24/reset-mac-os-x-10-7-lion-password/
    /sbin/mount -uw /
    /var/db/.AppleSetupDone

  • ORA-22992: cannot use LOB locators selected from remote tables

    Has anyone had this error msg before?
    Thx .

    If you want, you could facilitate your process with a global temporary table as follows:
    SQL> create global temporary table clob_temp (
      2  id         number,
      3  test_clob  clob)
      4  on commit delete rows;
    Table created.
    SQL> Create or Replace procedure run_clob (p_id in number, p_file_name in varchar2)
      2    AS
      3       l_clob          clob;
      4       l_bfile         bfile := BFILENAME ('TEMP_DIR', p_file_name);
      5  begin
      6      insert into clob_temp values (p_id, empty_clob() )
      7               returning test_clob into l_clob;
      8      DBMS_LOB.OPEN(l_bfile, DBMS_LOB.LOB_READONLY);
      9      DBMS_LOB.LOADFROMFILE(l_clob, l_bfile, DBMS_LOB.getlength(l_bfile));
    10      DBMS_LOB.CLOSE(l_bfile);
    11      insert into clob_table@dlog_link (id, test_clob)
    12               select * from clob_temp;
    13      commit;
    14  end;
    15  /
    Procedure created.
    SQL> select count(*) from clob_table@dlog_link;
      COUNT(*)
             0
    SQL> exec run_clob (1, 'clobtest.txt')
    PL/SQL procedure successfully completed.
    SQL> select count(*) from clob_table@dlog_link;
      COUNT(*)
             1

  • Cannot use numbers without buying an update for 17,99

    Apple ist nun wohl endgültig dem Größenwahn verfallen.
    Eine Datei die ich vor 2 Wochen zu letzte bearbeitet habe kann nicht mehr geöffnet werden, es sei denn, ich kaufe das € 17,99 update.
    Ich habe das alte  Programm wie zuvor jedes iPhone 1-5, iPad, iPod, iMac etc. nebst Software gekauft und werde nun so ******.
    Aus Enttäuschung über dieses Verhalten werde ich Apple verklagen, allein um gegen diese Arroganz anzukämpfen und um Recht zu bekommen und diese Geldgier zur Schau zu stellen.
    Ich war Apple fast wie einer Sekte verfallen und bin, obwohl 17,99 Peanuts sind, enttäuscht und werde Apple zumindest einen kleinen Tritt verpassen und das im Netz verbreiten.
    Danke Apple
    <Edited by Host>

    The new iWork apps should be a free update.  Hopefully one of these translations will be close to right:
    Die neuen iWork apps sollten ein freies Update sein
    Die neue iWork-apps sollte ein kostenloses update

  • Materialized View cannot use filter columns ORA-12033

    Hello Forum members,
    I am creating the following MV with Can you please advise me??
    Thanks
    SQL> create materialized view log on his_swi with rowid including new values;
    Materialized view log created.
    SQL>
    SQL> CREATE MATERIALIZED VIEW His_Swi_mv
    2 refresh fast with rowid
    3 AS
    4 select quarter,sum(sw_po),sum(sw_po_fre),
    5 sum(sw_por_sta+sw_porunt_swi+sw_por_hb+sw_po_free) as proj from
    6 history_switch group by quarter;
    his_swi group by quarter
    ERROR at line 6:
    ORA-12033: cannot use filter columns from materialized view log on
    "EM"."HIS_SWI"

    Hello Forum members,
    Please ignore the above post.
    got solution from : http://www.jusungyang.com/DWfolder/MaterializedViews/MVlogFilterColumns.txt
    Thanks

  • Error:cannot use system rollback segment for non-system tablespace

    Hi,
    I have created a oracle database 10.2.0 on fedora 9 system. I have created a user and assigned the default tablespace SATYA and given the permissions. But when I create a table in the user I am getting the following error.
    Can anyone help me in rectifying this error.
    ORA-01552: cannot use system rollback segment for non-system tablespace 'SATYA'
    thankyou
    satya

    Undo management is either AUTO or Manual, no local
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14231/undo.htm#sthref1469
    Since you are using 10g, you are recommended to use Auto undo management
    If you still plan to use manual undo management, make sure you have other non-system rollback segment in place.

Maybe you are looking for

  • Sleepless in Ottawa

    Every few days my Macbook gets into a state where it will not go to sleep or shut down. Doesn't matter how I try to put it to sleep (apple menu, brief press of power button, or close the lid). It just keeps running though if I close the lid it does t

  • F1-Documentation

    Hi All, How to maintain the F1-Documentation for a user defined field( if the field declared with the help of a data element) on a selection screen. Thank you. Regards, Padmsri.

  • What's best approach to handle - Sales and Delivery on account without INV

    Hello Experts, How to handle this situation in SAP B1 8.8 or 8.81 pleasse. 1. Customer walks in to the counter for sale on account. 2. He/She receives the item from inventory and is given a Delivery or sometiype of confirmation printout without price

  • OS X not booting up, problem with reinstalling OS X

    Hey all THis morning i switched on my 2.4ghz core 2 duo macbook, 2gb ram, 160gb hdd and it booted as far as the grey screen with the apple logo and spinning circle/gear thing. Researching into this i couldnt really find any clear answers and trying s

  • What make of RAM should be in a MacPro and would they all be the same make in a new computer?

    My MacPro is only just over 3 years old and 6 of the 8RAM have stopped functioning. I put the question - how long should RAM last - and had some replies. One of the replies led me to wonder what make of RAM should be or should I expect to be in a New