ORA-01041: internal error. hostdef extension doesn't exist

hi all,
i am presently working on logical standby database
but i am facing a problem from primary database
" select * from V$ARCHIVE_DEST"
LOG_ARCHIVE_DEST_1 valid
LOG_ARCHIVE_DEST_2 ERROR ORA-01041: internal error. hostdef extension doesn't exist
at present database not synchronizing
please help
in alert.log file at primary
ARC9: Attempting destination LOG_ARCHIVE_DEST_2 network reconnect (1041)
ARC9: Destination LOG_ARCHIVE_DEST_2 network reconnect abandoned
PING[ARC9]: Error 1041 when pinging standby 'standby server'.
Standby database is in running mode & well connected with network
Vaibhav
Edited by: Vaibhav Dixit on Oct 20, 2011 4:43 PM
Edited by: Vaibhav Dixit on Oct 20, 2011 4:43 PM

okkk
thanks for reply
i m also getting some problem in standby database in just 2-3 days
error is ->
ORA-03135: connection lost contact
LOG_ARCHIVE_DEST_2 ERROR ORA-01041: internal error. hostdef extension doesn't exist
then
i have passed some command on primary db & now it's working but i don't know it's good for db or not
ALTER SYSTEM SET log_archive_dest_state_2=’DEFER’ SCOPE=BOTH;
ALTER SYSTEM SET log_archive_dest_state_2=’ENABLE’ SCOPE=BOTH;
please give a idea to resolve this problem
regards
Vaibhav

Similar Messages

  • FND-UT-CMT: ORA-01041: internal error. hostdef extension doesn't exist

    I am applying patch PO RUP 22, after merging patch->10207297,11669329,7632187,9878808. However for 1 file -INVITPSB.pls, i am getting status running, but in the adorker log file shows ->
    AD Worker error:
    The following ORACLE error:
    ORA-03114: not connected to ORACLE
    occurred while executing the SQL statement:
    UPDATE fnd_install_processes
    SET skip_flag = ''
    WHERE worker_id = 1
    Error comitting pending transactions and closing Pro*C connection.
    The error is:
    FND-UT-CMT: ORA-01041: internal error. hostdef extension doesn't exist
    AD Worker is exiting with failure.
    Any ideas of what can be done?

    HI,
    Please check if solution in below metalink note helps:-
    Patch 4143498 Fails With ORA-01041,ORA-03114 Errors On Iscrf70b.Pls ORA-01041 [ID 340238.1]
    Thanks,
    JD

  • ORA-01041: internal error. hostdef extension doesn't exist  in forms 10g

    While Compiling the forms 10g I'm getting this error, pls help me on this problem.

    Check this link... ORA-01041: internal error. Hostdef extension doesn't exist
    hope this helps

  • ORA-01041: internal error. hostdef extension doesn't

    Hi,
    I am getting the followin error message when i am trying to run a sql script.
    select
    ERROR at line 1:
    ORA-01041: internal error. hostdef extension doesn't exist
    Pls let me know the remedy
    Thanks

    Hi !
    I try to create database by Database Configuration Assistant in "windows 2000 advance server, ORACLE9i". Process in 12% that error appear.
    when i Ignore this error the ORA-240324: Service handle not initialized appearance
    Please Help me to fix that error !

  • ERROR: ORA-01041: internal error. hostdef extension does not exist

    Hi, I got the following error message when I tried to insert a row in table TBL_ORDER.
    ERROR:
    ORA-01041: internal error. hostdef extension does not exist
    INSERT into TBL_ORDER
    ERROR at line 1:
    ORA-03113: end-of-file on communication channel
    We have Oracle version 8.1.5.o.2 and Linux version 6.1.
    Following are the tables, triggers, loadjava definition and source programs:
    TBL_ORDER
    1 ORDER_MEMBER_FIRM_ID VARCHAR2(4)
    2 ORDER_CLIENT_ID VARCHAR2(4)
    3 ORDER_BRANCH VARCHAR2(3)
    4 ORDER_SEQUENCE VARCHAR2(4)
    5 ORDER_EXCHANGE_ID VARCHAR2(3)
    6 ORDER_EXCHANGE_SEQUENCE VARCHAR2(7)
    7 ORDER_CREATE_DATE DATE
    8 ORDER_TYPE VARCHAR2(2)
    9 ORDER_STATUS VARCHAR2(1)
    10 ORDER_SYMBOL VARCHAR2(5)
    11 ORDER_SUFFIX VARCHAR2(14)
    12 ORDER_SIDE VARCHAR2(5)
    13 ORDER_PRICE VARCHAR2(20)
    14 ORDER_STOP_PRICE VARCHAR2(20)
    15 ORDER_PRICE_QUAL VARCHAR2(10)
    16 ORDER_QUANTITY VARCHAR2(6)
    17 ORDER_TIF VARCHAR2(4)
    18 ORDER_AON VARCHAR2(4)
    19 ORDER_DNR VARCHAR2(4)
    20 ORDER_CASH_NEXT_DAY VARCHAR2(4)
    21 ORDER_SELLER VARCHAR2(4)
    22 ORDER_ACCOUNT_TYPE VARCHAR2(4)
    23 ORDER_OS_TS VARCHAR2(4)
    24 ORDER_BOOTH_ID VARCHAR2(4)
    TBL_CMSOUT
    1 CMSOUT_MEMBER_FIRM_ID VARCHAR2(4)
    2 CMSOUT_CLIENT_ID VARCHAR2(4)
    3 CMSOUT_DATA VARCHAR2(120)
    trg_order.sql
    create or replace procedure OrderToCmsoutProc(cms_member_firm_id VARCHAR2,
    cms_client_id VARCHAR2,
    cms_branch VARCHAR2,
    cms_sequence VARCHAR2,
    cms_side VARCHAR2,
    cms_quantity VARCHAR2,
    cms_symbol VARCHAR2,
    cms_price VARCHAR2,
    cms_tif VARCHAR2,
    cms_type VARCHAR2)
    AUTHID CURRENT_USER
    as language java
    name 'OrderToCmsout.test(java.lang.String,
    java.lang.String,
    java.lang.String,
    java.lang.String,
    java.lang.String,
    java.lang.String,
    java.lang.String,
    java.lang.String,
    java.lang.String,
    java.lang.String)';
    show errors;
    create or replace trigger trg_order
    after insert on TBL_ORDER
    for each row
    CALL OrderToCmsoutProc (:new.order_member_firm_id,
    :new.order_client_id,
    :new.order_branch,
    :new.order_sequence,
    :new.order_side,
    :new.order_quantity,
    :new.order_symbol,
    :new.order_price,
    :new.order_tif,
    :new.order_type)
    commit;
    show errors;
    exit;
    trg_cmsout.sql
    create or replace procedure PackCmsoutSidProc(pck_member_firm_id VARCHAR2,
    pck_client_id VARCHAR2,
    pck_data VARCHAR2)
    AUTHID CURRENT_USER
    as language java
    name 'PackCmsoutSid.test(java.lang.String,
    java.lang.String,
    java.lang.String)';
    show errors;
    create or replace trigger trg_cmsout
    after insert on TBL_CMSOUT
    for each row
    CALL PackCmsoutSidProc (:new.cmsout_member_firm_id,
    :new.cmsout_client_id,
    :new.cmsout_data)
    commit;
    show errors;
    exit;
    loadORDERjava
    loadjava -r -f -o -user userid/pswd OrderToCmsout.java
    loadCMSOUTjava
    loadjava -r -f -o -user userid/pswd PackCmsoutSid.java
    OrderToCmsout.java
    import java.sql.*;
    import java.lang.*;
    import java.io.*;
    import oracle.jdbc.driver.*;
    public class OrderToCmsout {
    public static void main(String args[]) {
    try {
    test (args[0],args[1],args[2],args[3],args[4],
    args[5],args[6],args[7],args[8],args[9]);
    catch (Exception e) {
    System.err.println(e);
    } //catch
    } // end main
    public static void test ( String parm_member_firm_id,
    String parm_client_id,
    String parm_branch,
    String parm_sequence,
    String parm_side,
    String parm_quantity,
    String parm_symbol,
    String parm_price,
    String parm_tif,
    String parm_type)
    throws SQLException
    Connection conn = new OracleDriver().defaultConnection();
    PreparedStatement stmt2;
    try {
    stmt2= conn.prepareStatement
    ("INSERT INTO TBL_CMSOUT VALUES (?, ?, ?)");
    String datastring = parm_member_firm_id + "\\~" +
    parm_branch + " " +
    parm_sequence + "\\~" + "\\~" +
    parm_side + "\\~" +
    parm_quantity + " " +
    parm_symbol + " " +
    parm_price + "\\~" +
    parm_tif + " " +
    parm_type + "\\~";
    stmt2.setString(1, parm_member_firm_id);
    stmt2.setString(2, parm_client_id);
    stmt2.setString(3, datastring);
    stmt2.executeUpdate();
    stmt2.close();
    return;
    } //try
    catch (Exception e) {
    System.err.println(e);
    } //catch
    PackCmsoutSid.java
    import java.sql.*;
    import java.lang.*;
    import java.io.*;
    import oracle.jdbc.driver.*;
    public class PackCmsoutSid {
    public static void main(String args[]) {
    try { test(args[0],args[1],args[2]);
    catch (Exception e) {
    System.err.println(e);
    } //catch
    } // end main
    public static void test( String parm_member_firm_id,
    String parm_client_id,
    String parm_data)
    throws SQLException
    try {
    Connection conn = new OracleDriver().defaultConnection();
    PreparedStatement stmt1 = conn.prepareStatement
    ("SELECT sid_session_id " +
    "FROM tbl_sid " +
    "WHERE sid_member_firm_id = ? and " +
    "sid_client_id = ?");
    stmt1.setString(1, parm_member_firm_id);
    stmt1.setString(2, parm_client_id);
    ResultSet rs1 = stmt1.executeQuery();
    while (rs1.next ()) {
    String session_id_found = rs1.getString
    ("sid_session_id");
    CallableStatement pack_pipe = conn.prepareCall
    ("{call DBMS_PIPE.PACK_MESSAGE(?)}");
    pack_pipe.setString(1, parm_data);
    pack_pipe.execute();
    CallableStatement send_pipe = conn.prepareCall
    ("{? = call DBMS_PIPE.SEND_MESSAGE(?)}");
    send_pipe.registerOutParameter
    (1, java.sql.Types.INTEGER);
    send_pipe.setString (2, session_id_found);
    send_pipe.execute();
    } //while
    stmt1.close();
    conn.close();
    } //try
    catch (Exception e) {
    System.err.println(e);
    } //catch
    } //test
    } //PackCmsoutSid
    Thanks in advance for your help
    Vinicio

    you should post this question on the Application Server forum.
    --Olaf                                                                                                                                                                                       

  • ORA-01041: internal error. hostdef

    Hi
    I install oracle 9i
    I selected the options to install
    the Enterprise version with a General Purpose started database.
    The installation went through smoothly until it reached the final step of using
    the Oracle Database Configuration Assistant. The following are the 4 steps for
    this phase :
    1. Copying database files
    2. Initializing database
    3. Creating and Staring Oracle instance
    4. Completing Database Creation
    The installation completed the first 2 steps successfully. During the 3rd step, it
    gives the error message :
    ORA-01041: internal error. hostdef extension doesn't exist
    Any ideas on what could be causing this ?
    what should i do to resolve this error?
    Thanks

    From Oracle documentation
    "ORA-01041 internal error. hostdef extension doesn't exist
    Cause: Pointer to HSTDEF extension in HSTDEF is null.
    Action: Contact Oracle Support Services."

  • ORA-01041: internal error. hostdef doesn't exist

    Linux Advanced Server + Oracle 9.2.0.1.0
    Trying to sqlplus
    conn / as sysdba
    Error
    ORA-01041: internal error. hostdef doesn't exist
    What does it mean ? what I should do to be able to connect to the database.
    TNSNAMES.ora seems fine
    Linstener is up and running
    Any ideas? Thanks

    you might be installing the Softawre across the network and
    after some time your connection get disconnected.
    or you checkout the resouresc if you are doing in the server
    putting cd on the server.

  • ORA-01041: Internal Error. HOSTDEF extension does not exist

    Hi all,
    In the database I provided with the commando
    ALTER DATABASE BACKUP CONTROLFILE TO TRACE; a trace file with the Script for the production my controlfile. Now I would like to test this Script. I have install a new test DB. Then I shutdown the database and renamed the control files - to see particularly over, which error message become there indicated. Afterwards I wanted to start the Script from the trace file to create a control file. But after I STARTUP MOUNT; in SQL*Plus entered, I become these error messages:
    LRM-00109: could not open parameter file 'C:\Oracle\Ora920\DATABASE\INIT%ORACLE_SID%.ORA'
    ORA-01078: failure in processing system parameters
    How have I understood, Oracle tries to find the init file local on my machine. Those lies however on the server. Then I entered:
    startup pfile=\\server1\oracleserver\admin\orcltest\pfile\initorcltest.ora
    Can I enter a file, which does not lie locally on my computer with the instruction STARTUP pfile =...? After I made that, I become only this error message:
    ORA-01041 internal error. hostdef extension doesn't exist
    And the database is closed. I can't connect with it.
    Regards
    Leonid Pavlov

    As far as I know, if you want to start/stop Oracle through sqlplus you need to be using a copy of sqlplus on the server. If your server is an *NIX box, then you can telnet to the server and run sqlplus.  If your server is windows then you will need something like VNC, PC-Anywhere or sneakernet to physically attach to the server.
    HTH
    John

  • ORA.01041:internal error-- IN R12

    Hi All,
    While testing oracle seeded reports we are getting this error. As per the error i have checked in the PL/SQL code, i found that no views are existed in the R12 which are existed in 11i.
    EX..
    AR_CUSTOMERS_V -- existing view in Oracle 11i
    AR_CUSTOMERS -- existing view in Oracle R12
    Could any one suggest me how i can achieve this issue.
    Thanks,
    RED.

    There is no such a document which shows tables mapping between 11i and R12. However, to determine the difference between 11i and R12, you can refer to eTRM and the Content Document manuals, both should be helpful.
    Applications Electronic Technical Reference Manuals (eTRM)
    http://etrm.oracle.com
    Note: 404152.1 - E-Business Suite Release 12: Release Content Documents
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=404152.1

  • Hostdef extension doesn't

    When I try to create an index on spatial column on oracle on solaris
    create index scott.cities on scott.cities(geom) indextype is
    mdsys.spatial_index parameters ('SDO_LEVEL = 11 SDO_NUMTILES=4
    SDO_MAXLEVEL=28 SDO_COMMIT_INTERVAL =1000')
    I get an error ORA-01041: internal error. hostdef extension doesn't
    exist
    Can anyone help please

    Not sure why you are getting the hostdef
    error.
    If you send me an e-mail with your contact info (i.e. phone number) I can try and
    help out.
    Some things to check are that your
    USER_SDO_GEOM_METADATA entries are
    populated correctly.
    **NOTE**
    In Oracle 8.1.6, we recommend
    fixed indexes in almost all cases (i.e.
    SDO_NUMTILES=0, or omit the SDO_NUMTILES
    parameter).
    Also, it is not recommended
    to modify the SDO_MAXLEVEL parameter.

  • ORA-00600: internal error code, arguments: [6122], [0], [4], [0], [], [], [

    Hi All,
    I Got ORA-00600: internal error code, arguments: [6122], [0], [4], [0], [], [], [], [], [], [], [], []
    today i check for Oracle knowledge but i can see only until 9i version.
    I am pasting my OS AND database version below
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    PL/SQL Release 11.2.0.2.0 - Production
    CORE 11.2.0.2.0 Production
    TNS for Linux: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - Production
    I didn't find any knowledge for my database base version please any one help me on this
    Thanks in Advance
    Kind Regards
    Venkat

    980323 wrote:
    Hi Vishal,
    No not yet i will paste my trace file please can you have a look on it
    Dump continued from file: /oracle/admin/diag/rdbms/ewahed13/EWAHED13/trace/EWAHED13_ora_14503.trc
    ORA-00600: internal error code, arguments: [6122], [0], [4], [0], [], [], [], [], [], [], [], []
    ========= Dump for incident 22995 (ORA 600 [6122]) ========
    *** 2013-05-16 12:36:32.933
    dbkedDefDump(): Starting incident default dumps (flags=0x2, level=3, mask=0x0)
    ----- Current SQL Statement for this session (sql_id=6zcs0sc3nhj85) -----
    UPDATE "CS_ACTUALS"."APPLICATIONSTATE" SET "DEFINITION"=:1,"DEFINITIONDT"=:2 WHERE "DEFINITIONDT"=:3 AND "ROWID"=:4 RETURNING ROWID into :5Depending upon the platform version see bugs:
    Bug 12926930
    Bug 15907953
    Bug 16374276
    I thinks its the Index block corrupt - So you have following options
    1) Apply the patch - which is possible by seeing the exact bud
    2) Try to recover the block
    3) Try to drop and recreate the index - If its a non sys object.
    You need to check and populate V$DATABASE_BLOCK_CORRUPTION for blocks which are marked corrupt.
    Use dbv,rman validate commands to populate V$DATABASE_BLOCK_CORRUPTION view
    Use - Identify the corruption extension using RMAN/DBV/ANALYZE etc [ID 836658.1] note for identifying the blocks that are corrupt.

  • ORA-00600: internal error code, arguments: [kcratr_nab_less_than_odr], [1],

    Hi All,
    In our lab 11gR2 RAC setup is up and running (11.2.0.1). Last night due to some issue with power or power failure servers went down directly.
    When restart the RAC server, all the RAC related services are up and running except second node VIP is offline and database was down.
    When I go for database startup through srvctl command it gives ora-00600 internal error.
    ORA-00600: internal error code, arguments: [kcratr_nab_less_than_odr], [1], [2692], [912], [913], [], [], [], [], [], [], []
    From metalink (ID 1296264.1) I come to know there was a power failure causing logical corruption in controlfile.
    From metalink doc having steps for single instance but not sure how to follow the same steps in cluster environment.
    Is any body ever face the similar issue in RAC environment? Is this only second node VIP issue ?
    Thanks...

    Conceptually you have one database, and one set of control files, accessed from multiple instances.
    If the issue would have been with online redo logs (there is one thread of redo log files per instance), instance would have mattered.
    Now it doesn't matter, as there is one set of control files per database, not per instance.
    Sybrand Bakker
    Senior Oracle DBA

  • ORA-00600: internal error code, arguments: [kqlidchg1]

    Every time I compile a specific package body in Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production I get
    Error: ORA-00600: internal error code, arguments: [kqlidchg1], [], [], [], [], [], [], [], [], [], [], []
    ORA-00604: error occurred at recursive SQL level 1
    ORA-00001: unique constraint (SYS.I_PLSCOPE_SIG_IDENTIFIER$) violated
    It doesn't happen with all packages though, only this one. Is there any way to fix this?
    Thanks.

    The best way is to open a TAR with Oracle Support.
    For a probable Quick solution -
    you might wanna have a look at the metalink for the specific error message (somebody might have already raised a TAR with oracle support and oracle support might have already answered) if you have login in metalink.

  • ORA-00600: internal error code, arguments: [ktsircinfo_num1]

    While taking export of a table received EXP error and while dropping/selecting the same gor ora-600 errors.
    . . exporting table TEST4
    EXP-00003: no storage definition found for segment(29, 371385)
    SQL >Drop table test4 cascade;
    ORA-00600: internal error code, arguments: [ktsircinfo_num1], [29], [29], [371385], [], [], [], []
    sql> Desc test4;
    ORA-00600: internal error code, arguments: [ktsircinfo_num1], [29], [29], [371385], [], [], [], []
    I dont want to log TAR with oracle right now... I tried dropping and recreating Undo tablespace but still did not help much . Database version is 9204

    hi
    read metalink ID - 153788.1
    CHeers

  • ORA-00600: internal error when delete master rows in a materialized view

    I have a materialized view in 11g2 on Redhat 5, defined asCREATE MATERIALIZED VIEW mv_idty
    PARALLEL BUILD IMMEDIATE REFRESH FAST ON COMMIT ENABLE QUERY REWRITE AS
    select IDTY_NAME_FIRST,IDTY_NAME_MIDDLE,IDTY_NAME_LAST,IDTY_NAME_SUFFIX,IDTY_SSN,
      IDTY_DR_LIC_NUM,IDTY_DR_LIC_STA,x.person_id,i.rowid i_rowid,x.rowid x_rowid
      from idty i,person_x_idty x where x.idty_id=i.idty_id; I deleted a few rows from the master tables and get error13:58:48 SQL> delete idty where  idty_id like 'test_row%' ;
    7 rows deleted.
    13:58:52 SQL> commit;
    commit
    ERROR at line 1:
    ORA-12008: error in materialized view refresh path
    ORA-00600: internal error code, arguments: [kkzfrfajv_markdml-1], [], [], [], [], [], [], [], [], [], [], [] I have other materialized views and they all delete master OK. This is the simplest one but causes problem. HELP!
    Edited by: user13148231 on Aug 11, 2010 5:45 PM

    Checked note 743766.1. It is not 100% relevant as it is about import, but the query is usefulselect sowner, vname, mowner, master from sys.snap_reftime$It reveals the materialized view some how based on other schema.
    Recreate the materialized view. problem solved.

Maybe you are looking for