Please resolve error ORA-00245:

Hi
what is the solution of foloowing error
11gr2
aix
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of backup plus archivelog command at 06/20/2011 10:23:57
ORA-00245: control file backup operation failed
thanks

you need to configure snapshot controlfile,
source:
RAC BACKUP FAILS WITH ORA-00245: CONTROL FILE BACKUP OPERATION FAILED [ID 1268725.1]
RMAN Snapshot Controlfile Must Reside on Shared Device for RAC database [ID 1263621.1]
answered by CKPT
reference:-Re: ORA-00245 on alert_log.
also refer,
http://yichen-oracledba.blogspot.com/2011/02/11gr2-rac-backup-fails-with-ora-00245.html

Similar Messages

  • How to resolve errors - ORA-01033: ORACLE, or closed, or initialized ,ORA-02063: Previous line from D1558A_IFRSQRY

    Hi Expert,
        Please tell me how to resolve errors - ORA-01033: ORACLE, or closed, or initialized ,ORA-02063: Previous line from D1558A_IFRSQRY
    Thanks and Regards

    Google is obviously broken for you: so I've posted what you need to put into your browser.
    https://www.google.co.uk/search?q=ORA-01033

  • How to resolve error ORA-29491: invalid table for chunking?

    Hello,
    I'm trying to implement DBMS_PARALLEL_EXECUTE to speed up a huge update I need to do. I'm stuck on a problem with the table I'm using to test my procedure. Here's a simple test that produces the same error. As best I can tell, the table I'm declaring here is missing some kind of requirement that lets DBMS_PARALLEL_EXECUTE make use of it, but the docs and searching for the error code haven't turned up any useful discussions. Please help.
    drop table owner.why_cant_i_hold;
    create table owner.why_cant_i_hold (
    things VARCHAR2 (64),
    amount INT,
    CONSTRAINT why_cant_i_pk PRIMARY KEY (things)
    insert into why_cant_i_hold values ('limes', 8);
    insert into why_cant_i_hold values ('lemons', 8);
    insert into why_cant_i_hold values ('watermelons', 5);
    insert into why_cant_i_hold values ('cats', 4);
    insert into why_cant_i_hold values ('teacups',10);
    insert into why_cant_i_hold values ('mugs', 5);
    insert into why_cant_i_hold values ('eggs', 15);
    insert into why_cant_i_hold values ('jobs', 3);
    commit;
    -- got tasks?
    COLUMN task_name FORMAT A10
    SELECT task_name,
    status
    FROM user_parallel_execute_tasks;
    --exec DBMS_PARALLEL_EXECUTE.CREATE_TASK('holding');
    exec DBMS_PARALLEL_EXECUTE.CREATE_CHUNKS_BY_ROWID('holding', 'ODDEV03', 'why_cant_i_hold', true, 3);
    It seems like a really simple case here. The output is all successful until
    "Error starting at line 25 in command:
    exec DBMS_PARALLEL_EXECUTE.CREATE_CHUNKS_BY_ROWID('holding', 'owner', 'why_cant_i_hold', true, 3);
    Error report:
    ORA-29491: invalid table for chunking
    ORA-06512: at "SYS.DBMS_PARALLEL_EXECUTE", line 27
    ORA-06512: at "SYS.DBMS_PARALLEL_EXECUTE", line 121
    ORA-06512: at line 1"

    Oh. This was an easy one, table names are never really lower-case. Changing the value in my chunking call fixed the simple test:
    exec DBMS_PARALLEL_EXECUTE.CREATE_CHUNKS_BY_ROWID('holding', 'ODDEV03', 'WHY_CANT_I_HOLD', true, 3);
    It doesn't help with why my more complicated test case isn't working, but I have details to check before I ask again.
    EDIT: lesson learned... 'invalid table' doesn't mean the database can find the table you are talking about at all. I hope that's a help.
    Edited by: user519442 on Nov 16, 2011 12:33 PM

  • Please Help, Error:ORA-06550

    I am calling a stored procedure in a package LDAP_AUTH ,this SP will take 3 input arguments which are varchar2.when I am calling the SP I am getting error.The SP is running fine in SQL * Plus. Pls help me on this.Pls mail me at [email protected]
    I used cmd.ExecuteNonQuery() i am getting the following error.
    ORA-06550: line 1, column 7:
    PLS-00306: wrong number or types of arguments in call to 'LOGIN'
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    ************ Procedure Code Start *****************
    procedure login(p_user_id in varchar2, p_password in varchar2, p_client_identifier in Varchar2)
    as
    retval PLS_INTEGER;
    ldap_host varchar2(255):=get_host;
    ldap_port number:=get_port;
    user_id varchar2(100):=p_user_id;
    password varchar2(255) := p_password;
    base_dn cmm_preference_map_entry.preference_value_1%type := get_base_dn;
    username_filter cmm_preference_map_entry.preference_value_1%type := replace(get_ldap_username_filter,'%u',user_id);
    group_filter cmm_preference_map_entry.preference_value_1%type := get_ldap_group_member_filter;
    my_session DBMS_LDAP.session;
    res_message DBMS_LDAP.MESSAGE;
    res_attrs DBMS_LDAP.STRING_COLLECTION;
    temp_dn VARCHAR2(512);
    temp_entry DBMS_LDAP.MESSAGE;
    entry_index PLS_INTEGER;
    v_string_table v_string_table_ty;
    i number:=1;
    m number:=1;
    v_user_session_id number;
    pragma autonomous_transaction;
    begin
    DBMS_LDAP.USE_EXCEPTION := TRUE;
    retval := -1;
    -- Initialize the LDAP session
    my_session := DBMS_LDAP.init(ldap_host,ldap_port);
    --Authenticate to the directory
    --retval :=DBMS_LDAP.simple_bind_s(my_session, 'uid=wayyen,ou=people,o=Enterprise Company,dc=smartchain','wayyen');
    retval :=DBMS_LDAP.simple_bind_s(my_session, '','');
    --res_attrs(1):='cn';
    retval := DBMS_LDAP.SEARCH_S(
    ld => my_session
    , base => base_dn
    , scope => DBMS_LDAP.SCOPE_SUBTREE
    , filter => username_filter
    , attrs => res_attrs
    , attronly => 0
    , res => res_message
    temp_entry := DBMS_LDAP.FIRST_ENTRY(my_session, res_message);
    temp_dn := DBMS_LDAP.GET_DN(my_session, temp_entry);
    -- dbms_output.put_line('User DN: '||temp_dn);
    retval :=DBMS_LDAP.simple_bind_s(my_session, TEMP_DN, p_password);
    res_attrs.delete;
    res_attrs(1):='*';
    retval := DBMS_LDAP.SEARCH_S(
    ld => my_session
    , base => base_dn
    , scope => DBMS_LDAP.SCOPE_SUBTREE
    , filter => replace(get_ldap_group_member_filter,'%M',temp_dn)
    , attrs => res_attrs
    , attronly => 0
    , res => res_message
    -- retval := DBMS_LDAP.COUNT_ENTRIES(my_session, res_message);
    -- DBMS_OUTPUT.PUT_LINE(
    -- RPAD('Number of Entries ', 25, ' ') || ': ' || TO_CHAR(retval)
    temp_entry := DBMS_LDAP.FIRST_ENTRY(my_session, res_message);
    entry_index := 1;
    while temp_entry is not null
    loop
    -- dbms_output.put_line('***Group DN**** '||DBMS_LDAP.get_dn(my_session, temp_entry));
    v_string_table(i):=DBMS_LDAP.get_dn(my_session, temp_entry);
    i := i + 1;
    temp_entry := DBMS_LDAP.NEXT_ENTRY(my_session, temp_entry);
    -- DBMS_OUTPUT.PUT_LINE('===================================================');
    entry_index := entry_index + 1;
    END LOOP;
    create_user_session(p_user_id, v_string_table, v_user_session_id);
    ldap_ctx_pkg.set_session_id(v_user_session_id, p_client_identifier);
    dbms_output.put_line('user_session_id: '||v_user_session_id);
    commit;
    retval := DBMS_LDAP.UNBIND_S(my_session);
    end login;
    ************ Procedure Code End*****************
    Web.config
    <appSettings>
    <!--<add key="BaseURLSite" value="http://localhost/SaviReportsWebSite"/>
    <add key="DataSource" value="SRIRAMA-D620"/>
    <add key="UID" value="sa"/>
    <add key="PWD" value="satyam"/>
    <add key="DatabaseName" value="Employee"/>-->
    <add key="BaseURLSite" value="http://localhost/SaviReportsWebSite"/>
    <add key="UID" value="rpt$928$syn"/>
    <add key="PWD" value="rpt$928$syn"/>
    <add key="Data Source" value="AURORA"/>
    <add key="ReportService2005WebService.ReportService2005" value="http://localhost/ReportServer/ReportService2005.asmx"/>
    </appSettings>
    Public Function check_Login(ByVal strLoginIDDesc As String, ByVal strPasswordDesc As String, ByVal strSessionIDDesc As String) As Boolean
    Dim strSQL As String
    'Dim dsHomePage As DataSet
    Dim OracleParam(2) As OracleParameter
    Dim blnStatus As Boolean = False
    Dim gStrConnection As String = Nothing
    gStrConnection = "Persist Security Info=False;"
    gStrConnection += "Integrated Security=False;"
    gStrConnection += "User ID=" + ConfigurationManager.AppSettings("UID") + ";"
    gStrConnection += "pwd=" + ConfigurationManager.AppSettings("PWD") + ";"
    gStrConnection += "Data Source=" + ConfigurationManager.AppSettings("Data Source")
    Dim OracleConnection1 As New OracleConnection(gStrConnection)
    Dim cmd As New OracleCommand
    Dim rowsAffected As Integer
    Dim index As Integer
    cmd.CommandText = "ldap_auth.login"
    cmd.CommandType = CommandType.StoredProcedure
    cmd.Connection = OracleConnection1
    OracleConnection1.Open()
    OracleParam(0) = New OracleParameter("LoginIDDesc", OracleType.LongVarChar)
    OracleParam(0).Direction = ParameterDirection.Input
    OracleParam(0).Value = strLoginIDDesc
    OracleParam(1) = New OracleParameter("PasswordDesc", OracleType.LongVarChar)
    OracleParam(1).Direction = ParameterDirection.Input
    OracleParam(1).Value = strPasswordDesc
    OracleParam(2) = New OracleParameter("SessionIDDesc", OracleType.LongVarChar)
    OracleParam(2).Direction = ParameterDirection.Input
    OracleParam(2).Value = strSessionIDDesc
    Dim UBound As Integer = OracleParam.Length
    For index = 0 To UBound - 1
    cmd.Parameters.Add(OracleParam(index))
    Next
    rowsAffected = cmd.ExecuteNonQuery()
    OracleConnection1.Close()
    If rowsAffected = -1 Then
    blnStatus = True
    End If
    Return blnStatus
    End Function
    Regards,
    SriRam.

    alter table tableName drop constraint constraintName ;
    You cannot drop an index being used to enforce uniqueness. You must drop the constraint - which will also drop the index. You also cannot drop a unique constraint being used as a reference of a foreign key. Adding the keyword CASCADE will allow you to get around that, but it will destroy the FK references.
    alter table tableName drop constraint constraintName CASCADE ;

  • Resolving errors ORA-01652 and ORA-04031

    Hi,
    My database is 8.1.7
    i am frequenty getting this error.
    suggestion required.

    For ORA-01652, check free space in your datafiles.
    For ORA-04031, upgrade to Oracle 8.1.7.4.1 or higher.

  • Please resolve error

    <html>
    <head>
    <title>JSP Programming</title>
    </head>
    <body>
    <%! boolean curve(int i,int j)
          return  i+j;
        boolean curve(int i)
            return 10+i;
    %>
    <p><%=curve(70,10)%></p>
    <p><%=curve(70)%></p>
    </body>
    </html>Error:
    found : int
    required: boolean
    return i+j;
    found : int
    required: boolean
    return 10+i;

    <html>
    <head>
    <title>JSP Programming</title>
    </head>
    <body>
    <%! boolean curve(int i,int j)
    boolean status ;
                if( 10 + i != 0 ){
                status =  false;
            }else{
                status =  true;
            return status;
    %>
    <p><%=curve(70,10)%></p>
    <p><%=curve(70)%></p>
    </body>
    </html>try this if still have problem; write what do you want to solve?

  • Please help for ORA-02049 - Timeout error

    Hi All,
    we have got a reporting DB and 14+ Application DBs, the data is extracted from all the application databases (DBs) and dumped into the common tables of reporting database. While inserting and updating the common reporting tables the other jobs gets timeout error and fails. We daily face this failure problem (error: ORA-02049 - Timeout error distributed transaction waiting for lock) for almost 10-15 times.
    Can you please help me out in resolving and getting the permanent solution for this problem.
    Thanks in advance.

    Thanks Kamal,
    as mentioned above, I have got Oracle,Java,Unix environment. Autosys jobs are scheduled through out the day.
    Mechanism : Autosys job triggers the action at specified time, Unix code calls oracle packaged procedure, extracts data and puts into the common reporting table from this data java code formats the report output.
    There are separate reporting jobs for all instances though the report is same but for different locations(14 DB instances).
    and all these reporting jobs dump data into common reporting table, data can be differentiated on the hub or location.
    But if one job is running for first instance then second job waits for the lock and fails after 2 mins.
    I have to avoid this situation, I hold I am able to explain the situation.

  • How to resolve this Error ORA-04030: out of process memory when trying to a

    Hi
    I am connecting as a sysdba and trying to execute a query on the V$Logmnr_contents but getting the following Error
    ORA-04030: out of process memory when trying to allocate 408 bytes (T-LCR
    structs,krvuinl_InitNewLcr)
    Can anyone guide me how to resolve this issue.
    Thanks

    Hi,
    As root user, edit the /etc/sysconfigtab file, and try to set the udp_recvspace parameter to 262144 and reboot the machine :
    inet:
    udp_recvspace = 262144
    Metalink note 297030.1 Ora-04030 During Execution Of LogMiner Query
    Nicolas.

  • How to resolve the error ORA-12560 TNSprotocol adapter

    I am using Oracle 9i release 2 database on my window xp machine. My database created using DBCA during installation is working fine . Now i want to create the database manually, When i set SET ORACLE_SID=newdb and try to connect to like this
    c:\sqlplus /nolog
    enter username:sys/sys as sysdba
    gives an error ORA-12560 TNSprotocol adapter
    how to resolve this error

    see this:
    ERROR:ORA-12560: TNS:protocol adapter error
    see post of user601010

  • PLEASE RESOLVE THE MIRO ERROR

    Hi gurus,
    please resolve the problem urgent.
    while doing MIRO Iam getting the following error.
    after given PO number in MIRO I getting the following error. please how to resolve the problem.
    Error in account determination: table T030K key ASHA VST V0
    Message no. FF709
    Diagnosis
    In the chart of accounts to be posted to, no accounts are defined for the tax code you used.
    Procedure
    Contact your system administrator.
    Define the accounts to which a tax posting is to be made with the tax code entered in Customizing for taxes on sales/purchases.
    To do this, choose Maintain entries (F5).
    where i can determin the accounts, which accounts will be effect.
    Thank you & Regards
    Anil

    Dear Anil,
    Go to the transaction code FTXP. Give the country code and then the tax code.
    Now on the top, there would be a tab for the "Accounts". Click on it and for the chart of accounts, give the GL accounts.
    Alternatively, go to OB40, for the accounting key V0, give the GL accounts.
    Assign points if useful.
    Regards
    Venkatesh

  • MIRO error please resolve the problem

    Hi gurus,
    please resolve the problem urgent.
    while doing MIRO Iam getting the following error.
    after given PO number in MIRO I getting the following error. please how to resolve the problem.
    Error in account determination: table T030K key ASHA VST V0
    Message no. FF709
    Diagnosis
    In the chart of accounts to be posted to, no accounts are defined for the tax code you used.
    Procedure
    Contact your system administrator.
    Define the accounts to which a tax posting is to be made with the tax code entered in Customizing for taxes on sales/purchases.
    To do this, choose Maintain entries (F5).
    where i can determin the accounts, which accounts will be effect.
    Thank you & Regards
    Anil

    Hi,
    You have to maintain the GL accounts for the correct combination of country, tax code, chart of accounts etc in the tcode FTXP for the transaction VST.
    I hope either the transaction VST or the tax code V0 was newly added
    You can get the correct GL account by askign the person who has initiated this change. May be your FI team member also can help.
    T030K is the table which gets updated while you maintain teh entries through FTXP tcode.
    Hope this helps you

  • Error ORA-06533: Subscript beyond count - Please help

    Hi All,
    Please help me on below error
    I Created two Objects and two Type like below
    CREATE OR REPLACE TYPE P_IN_OBJ AS OBJECT
    A1 VARCHAR2(5),
    A2 VARCHAR2(5),
    A3 VARCHAR2(30));
    CREATE OR REPLACE TYPE P_IN AS TABLE OF P_IN_OBJ;
    CREATE OR REPLACE TYPE P_OUT_OBJ AS OBJECT
    (B1 VARCHAR2(1),
    B2 VARCHAR2(100),
    B3 NUMBER,
    B4 VARCHAR2(100));
    CREATE OR REPLACE TYPE P_OUT AS TABLE OF P_OUT_OBJ;
    CREATE OR REPLACE PACKAGE PKG_P1 AS
    PROCEDURE PRC_P1(P_IN_VALUE IN P_IN ,
    P_OUT_VALUE OUT P_OUT);
    END PKG_P1;
    CREATE OR REPLACE PACKAGE BODY PKG_SEG_QS AS
    PROCEDURE PRC_SEG_QS(P_IN_VALUE IN P_IN ,
    P_OUT_VALUE OUT P_OUT ) AS
    P_OUT_VAL P_OUT := P_OUT();
    element INTEGER := 1;
    BEGIN
    IF P_IN_VALUE.EXISTS(1) = TRUE THEN
    FOR I IN 1..P_IN_VALUE.COUNT
    LOOP
    FOR ALL_QS IN
    (SELECT E1, E2, E3, E4
    FROM MV_SEG_QS MVSQ
    WHERE MVSQ.Z1 = P_IN_VALUE.A1
    AND MVSQ.Z2 = P_IN_VALUE.A2
    AND MVSQ.Z3 = P_IN_VALUE.A3
    LOOP
    P_OUT_VAL(element).B1 := ALL_QS.E1;
    P_OUT_VAL(element).B2 := ALL_QS.E2;
    P_OUT_VAL(element).B3 := ALL_QS.E3;
    P_OUT_VAL(element).B4 := ALL_QS.E4;
    element := element+1;
    END LOOP;
    END LOOP;
    END IF;
    P_OUT_VALUE:= P_SEG_OUT;
    END PRC_P1;
    END PKG_P1;
    When I call this Package I am getting the below Error
    ORA-06533: Subscript beyond count
    Please somebody help me in this issue its very urgent for me.
    Thanks,
    Anu.

    Anu wrote:
    Hi All,
    Please help me on below error
    I Created two Objects and two Type like below
    CREATE OR REPLACE TYPE P_IN_OBJ AS OBJECT
    A1 VARCHAR2(5),
    A2 VARCHAR2(5),
    A3 VARCHAR2(30));
    CREATE OR REPLACE TYPE P_IN AS TABLE OF P_IN_OBJ;
    CREATE OR REPLACE TYPE P_OUT_OBJ AS OBJECT
    (B1 VARCHAR2(1),
    B2 VARCHAR2(100),
    B3 NUMBER,
    B4 VARCHAR2(100));
    CREATE OR REPLACE TYPE P_OUT AS TABLE OF P_OUT_OBJ;
    CREATE OR REPLACE PACKAGE PKG_P1 AS
    PROCEDURE PRC_P1(P_IN_VALUE IN P_IN ,
    P_OUT_VALUE OUT P_OUT);
    END PKG_P1;
    CREATE OR REPLACE PACKAGE BODY PKG_SEG_QS AS
    PROCEDURE PRC_SEG_QS(P_IN_VALUE IN P_IN ,
    P_OUT_VALUE OUT P_OUT ) AS
    P_OUT_VAL P_OUT := P_OUT();
    element INTEGER := 1;
    BEGIN
    IF P_IN_VALUE.EXISTS(1) = TRUE THEN
    FOR I IN 1..P_IN_VALUE.COUNT
    LOOP
    FOR ALL_QS IN
    (SELECT E1, E2, E3, E4
    FROM MV_SEG_QS MVSQ
    WHERE MVSQ.Z1 = P_IN_VALUE.A1
    AND MVSQ.Z2 = P_IN_VALUE.A2
    AND MVSQ.Z3 = P_IN_VALUE.A3
    LOOP
    P_OUT_VAL(element).B1 := ALL_QS.E1;
    P_OUT_VAL(element).B2 := ALL_QS.E2;
    P_OUT_VAL(element).B3 := ALL_QS.E3;
    P_OUT_VAL(element).B4 := ALL_QS.E4;
    element := element+1;
    END LOOP;
    END LOOP;
    END IF;
    P_OUT_VALUE:= P_SEG_OUT;
    END PRC_P1;
    END PKG_P1;
    When I call this Package I am getting the below Error
    ORA-06533: Subscript beyond count
    Please somebody help me in this issue its very urgent for me.
    Thanks,
    Anu.Anu,
    Correct your package code, its not working.
    Cheers,
    Manik.

  • TS3221 How do I resolve error meassage 0xE800007F please

    How do I resolve error message 0xE800007F please - cannot sync with iphone over wifi

    How do I resolve error message 0xE800007F please - cannot sync with iphone over wifi

  • TS3694 How to resolve error code 1015 in restoring apple iphone. Please guide

    How to resolve error code 1015 in restoring apple iphone. Please guide.

    Unauthorized modification of iOS
    http://support.apple.com/kb/HT3743
    ERROR 1015...
    This Error Code is indicative of the Device being jailbroken / Hacked...
    Sorry... But...
    The discussion of Jailbroken Devices is against the Terms of Use of this Forum.
    You will need to look elsewhere.

  • TS3694 i have i phone 3g ios 4.2.1 so i wana to restore so now it is showing an error 1015 so please resolve my problem

    i have i phone 3g ios 4.2.1 so i wana to restore so now it is showing an error 1015 so please resolve my problem

    Shiv lal wrote:
    i have i phone 3g ios 4.2.1 ..  now it is showing an error 1015
    Unauthorized modification of iOS  >  http://support.apple.com/kb/HT3743
    ERROR 1015...
    This Error Code is indicative of the Device being jailbroken / Hacked...
    Sorry... But...
    The discussion of Jailbroken Devices is against the Terms of Use of this Forum.
    You will need to look elsewhere.

Maybe you are looking for

  • Harmon Kardon AVR 430 and Audigy

    I'm trying to run MP3's through my HK reciever (It has a built in decoder). It looks like it should be straight forward enough. As I understand, I can use a stereo or mono miniplug out of the sound card and crossover to RCA plug for the reciever. I'v

  • Iphone 5: contact problem

    I enter a new number into the phone and press add contact, but it does not save to the address book. however if i search the contact its on the phone somewhere but not the address book. how do the contacts add to the address book when added using the

  • Problem with modifier keys in InputEvent

    I am trying to override DefaultCellEditor.isCellEditable() such that only unmodified double-clicking on my table cells will start edit. Naively, I thought this would be simple: cast the received EventObject to, say, an InputEvent and then query its m

  • Designer 7.1 Not Responding error

    I have LifeCycle Designer 7.1 and have just received and XDP file that I need to modify. It's a one pager, but is somewhat large (600kb). It has a few images embedded (approximately 10 of varying sizes). It loads up fine, albeit slow. But whenever I

  • How to export synonyms?

    Hello forum, for creating a test instance we want to export catalog data from selected users/schemas including their synonyms. With loadercli the commands "export user catalog ..." or "export schema <dbuser> ..." don't extract the synoyms. And "expor