Ora-03113 and no oracle process found in SuSE10.1

I just installed Oracle10.2 on SuSE10.1.
When created database, the ora-03113 occured.
And other results are:
ps -ef can't find any Oracle process,
ipcs can't find any Oracle process either.
the question is how to start the backgroud process manually?
And how to solve the ora-03113 problem?
I know it's very complicated. :)
Roy

yes. i can follow these steps. all envs are correct, i think.
i didn't create the database successfully, so when i startup the instance using startup nomount, the error ora-03113 occurs too.
the bad thing is I can't find any error messages in BACKGROUND_DUMP or other placess.
How can I handler this?
Merry Xmas
Roy

Similar Messages

  • Ora-03113 and ora-01041 in Oracle 8i.

    Hi,
    When i run this script in SQL*plus, i los the comunication.
    The script is the next.
    create type prueba_t
    create or replace type prueba_t
    as object
    (cod_prueba varchar2(8),
    padre ref prueba_t)
    create table prueba of prueba_t
    cod_prueba not null
    alter table prueba add
    (scope for (padre) is prueba)
    In the last sentence Oracle send me the next message.
    ORA-03113: end-of-file on comunication channel.
    If you know this problem help me Please.

    rothen_s wrote:
    I've read the document 17613.1 in metalink. I did what is written in section C, i.e. I identified the part of the SQL statement that causes the error. Could someone of Oracle please answer to this?
    Well, if you have metalink access, you should raise this as an issue. That's the best way to talk to Oracle about it. The forum may have a few Oracle people hanging around occasionally, but in general we're just volunteers with our own jobs around the world. ;)

  • Ora-03113  and ORA-00474 - database does not startup . Help !

    - Its a Oracle 10.2.0.1.0 standard edition database.
    - we get the ora-03113 end of file communication error during startup.
    - when we followed step by step it happens between MOUNT => OPEN stage.
    - database does mount but gives ora-03113 end of file communication error during OPEN.
    - when I checked the alert log file and it has the following errors.
    ORA-00447: fatal error in background process
    ORA-00474: SMON process terminated with error
    - i did run "recover database" command it says media recovery complete, but when I try to open it fails with ora-03113 error. Even a reset logs did not help
    Question:
    1) I wanted to somehow open the database even if there is a data loss ? how can I do that ?
    2) Can I create a new instance and attach these datafiles/controlfiles/redo logs and be able to start the database ?
    3) We have only 6 months old backup , so wanted to know if somehow we can open this database.
    Thanks in advance

    johnpau2013 wrote:
    - Its a Oracle 10.2.0.1.0 standard edition database.
    - we get the ora-03113 end of file communication error during startup.
    - when we followed step by step it happens between MOUNT => OPEN stage.
    - database does mount but gives ora-03113 end of file communication error during OPEN.
    - when I checked the alert log file and it has the following errors.
    ORA-00447: fatal error in background process
    ORA-00474: SMON process terminated with error
    - i did run "recover database" command it says media recovery complete, but when I try to open it fails with ora-03113 error. Even a reset logs did not help
    Question:
    1) I wanted to somehow open the database even if there is a data loss ? how can I do that ?
    2) Can I create a new instance and attach these datafiles/controlfiles/redo logs and be able to start the database ?
    3) We have only 6 months old backup , so wanted to know if somehow we can open this database.
    Thanks in advancewhat clues exist within alert_SID.log file?
    When was last time it started without error?
    What exactly transpired since then?
    what OS name & version?
    Edited by: sb92075 on Mar 24, 2012 4:23 PM

  • ORA-03113 and ORA-07445 ACCESS_VIOLATION (again)

    On:
    10g
    Windows 2003 server
    IIS 6
    ASP.NET 2.0
    Oracle client 10.2.0.1.0
    ODAC 10.2.0.2.21
    odp.net 2.102.2.20
    Validate Connection=true;Min Pool Size=0 in connection string
    All odp.net connection, command and parameter objects are closed/disposed after use.
    The issue:
    ORA-03113 is returned to asp.net.
    ORA-07445 ACCESS_VIOLATION is logged on database side. (see below)
    It is ALWAYS the same select query (in stored procedure).
    This is NOT a heavy query. Whole table is only 20K rows. (see below)
    The rest of web application is UNAFFECTED. oracle connection and queries working normally.
    Memory and threads used w3wp.exe are normal
    Our only solution is for DBA to re-allocate table on db server.
    I have read all related posts on this Forum but please any advice is welcome!
    Thanks,
    Adam
    ORA-07445: exception encountered: core dump [ACCESS_VIOLATION] [evaopn2+2896] [PC:0x15F3876] [ADDR:0x0] [UNABLE_TO_READ] []
    Edited by: user10422769 on Sep 1, 2010 12:35 AM

    according to this article:
    <span> [Oracle ORA-07445 exception tips|<a class="smarterwiki-linkify" href="http://www.dba-oracle.com/t_ora_07445_exception_encountered.htm]">http://www.dba-oracle.com/t_ora_07445_exception_encountered.htm]</a>
    </span>
    ther is a lot of reasons for this issue I suggest that you try to do some action to try to understand where is the problem:
    1. Change the connection string to contain only the schema parameter (no pooling parameters).
    2. Change the select to return only 1:
    _SELECT 1 as val_
    FROM IIL_RUN_SETS ILRS
    INNER JOIN IIL_RN_SET_STA_VALS ISSV
    ON ILRS.ILRS_ID = ISSV.ILRS_ID
    AND CURRENT_TIMESTAMP BETWEEN ISSV.TRANS_FROM AND ISSV.TRANS_TO
    INNER JOIN IIL_RN_SET_STATUSES ISST
    ON ISSV.ISST_ID = ISST.ISST_ID
    INNER JOIN IIL_RUNS ILRN
    ON ILRS.ILRS_ID = ILRN.ILRS_ID
    LEFT OUTER JOIN IIL_RUN_LABELS IRLB
    ON ILRN.IRLB_ID = IRLB.IRLB_ID
    INNER JOIN IIL_RUN_STA_VALS IRSV
    ON ILRN.ILRN_ID = IRSV.ILRN_ID
    AND CURRENT_TIMESTAMP BETWEEN IRSV.TRANS_FROM AND IRSV.TRANS_TO
    INNER JOIN IIL_RUN_STATUSES IRST
    ON IRSV.IRST_ID = IRST.IRST_ID
    INNER JOIN IIL_RUN_TYPES IRTY
    ON ILRN.IRTY_ID = IRTY.IRTY_ID
    INNER JOIN PRODUCTS PDCT
    ON ILRN.PDCT_ID = PDCT.PDCT_ID
    INNER JOIN USERS UPDATE_USER
    ON ILRN.UPDATE_USER_ID = UPDATE_USER.USER_ID
    WHERE ILRS.ILRS_ID ; = :B1
    _AND rownum=1_
    ORDER BY ILRN.ILRN_ID
    if this result will not return the value that means that the problem is in the SQL/Procedure
    3. Try to run on diffrent client - it maybe related to some ODP problem one one client.

  • Export failed, ORA-03113 and ORA-01041

    Hello,
    I'm trying to do a full export of my DB,I have installed Oracle 9i dataserver(configured in shared mode) on Windows 2k, and the following error appears me:
    . exportando acciones y objetos de procedimiento pre-esquema
    EXP-00008: se ha encontrado un error 3113 de ORACLE
    ORA-03113: fin de archivo en el canal de comunicación
    EXP-00008: se ha encontrado un error 1041 de ORACLE
    ORA-01041: error interno. No existe la extensión hostdef
    EXP-00000: La exportación no ha terminado correctamente
    I don't understand it, because I have 2 other DB instances created in the same data server and their exportation have finished correctly.
    Any idea?¿
    Thanks a lot,
    Mabel

    Hi,
    Here is the error description for error 1041:01041, 00000, "internal error. hostdef extension doesn't exist"
    // *Cause: Pointer to hstdef extension in hstdef is null.
    // *Action: Report as a bugAction is to report as a bug. you should open an iTar on Metalink.
    Regards,
    Yoann.

  • ORA-03113 and ORA-03114 problems

    Hi,
    I'm experimenting Oracle8i. I'm installing 8.1.7 to RedHat Linux 7.0 out of box without recompiling the kernel. I set the SHMMAX to 0.5*258MB memory on the machine by echoing the number to /proc/sys/kernel/shmmax.
    I checked that the system meets the requirements of Oracle's Installation Guide except SEMOPM. The RedHat Linux 7.0 sets it to 32, but Oracle requires 100.
    I chose Oracle8i EE Typical Installation. The installation was ok to the point of running root.sh. Several syntax errors occur from root.sh. But they are minor syntax errors. I checked the code, regardless of errors, the scripts accomplished what it intends to do. The installation continued. I choose automatic configure Net8 when it ran Net8 Configuration Assistant and the Net8 Configuration was completed successful.
    When it started Oracle Database Configuration Assistant, it created a database. But when it initialized the database, error messages ORA-03114 and ORA-03113 appeared many times. Each time, I chose to ignore. The final message was "Database creation completed with warnings."
    After installation, I ran svrmgrl
    $svrmgrl
    SVRMGR> connect INTERNAL
    Connected.
    SVRMGR> startup
    ORA-03113 end-of-file on communication channel
    Checking the meaning of error messages, it says that if ORA-03113 occurs during a connection attempt, check the setup files for the appropriate Net8 driver and confirm Net8 software is correctly installed on the server.
    During installation, I chose Local naming method. There are following files in $ORACLE_HOME/network/admin/
    listener.ora
    sqlnet.ora
    tnsnames.ora
    shrept.lst
    To my layman's eye, they looked ok. I can even telnet to the linux machine with database name, although I don't know how the machine has acquired the alias without any changes to /etc/named.conf nor any changes to any files in /var/named directory.
    Please tell me what is correctly installed Net8? or what went wrong and how I should fix the problem.
    Thanks,
    Wayne
    null

    I seem to have 8.1.7 creating a database with RH Linux 7.1 now. This was an important clue, since 7.1 hiccups 65% into the link phase of installation, thereby requiring the stubs patch to be run at that time, whereas 7.0 runs quite happily through the install & link without using the patch.
    HOWEVER... before invoking dbassist to create the database under 7.1, you apparently need to export ASSUME_LD_LIBRARY = 2.2.5, etc., again, as you would do for the first time installing under RH 7.0.
    null

  • ORA-03113 and ORA-01041 errors

    One of our customer is getting intermittent errors in the XA log.
    ORACLE XA: Version 8.0.5.0.0. RM name = 'Oracle_XA'.
    095809.6179..0:
    ORA-03113: end-of-file on communication channel
    095820.6179..0:
    ORA-01041: internal error. hostdef extension doesn't exist
    What could possible be wrong ?
    null

    Rajesh Mahajan (guest) wrote:
    : One of our customer is getting intermittent errors in the XA
    log.
    : ORACLE XA: Version 8.0.5.0.0. RM name = 'Oracle_XA'.
    : 095809.6179..0:
    : ORA-03113: end-of-file on communication channel
    : 095820.6179..0:
    : ORA-01041: internal error. hostdef extension doesn't exist
    : What could possible be wrong ?
    Hi Rajesh , in my opinion you lost the communication with your
    server . The server could be shutdown an restart again while
    your aplication is running or waiting for any execution. With
    Oracle Forms this happen an the forms loose the conection with
    the server , but seems that this aplication was already running.
    You only get close the forms , in NT , with the Task Manager
    and End the Task . In the Sql Plus ocuurs the same but you can
    close the section or make another conection with your database.
    I hope help you ,
    Regards
    Lourival
    null

  • ORA-03113 when installing Oracle 8.1.7

    Hi!
    I'm trying to install Oracle 8.1.7 Std. Edition on Windows 2000. Whatever I try I always get an ORA-03113 when the wizard tried to initiallize the database. Seems that the TNSListener does something strange.
    Who can help me?????
    Thanks a lot!
    Holger Bothmer
    mailto:[email protected]

    Hi,
    Please check up if any TNSListener (of older version , from previously installed RDBMS ) is already running in the system.
    Statup->controlpanel->Services->%TNSListener%.
    If so, please Stop the listener,while you install the oracle.
    Else, While you install oracle, don't create starter database.First install Oracle, after that, create the DB using "Database configuration Assistant(DCA)", life will be easier!!
    Regard
    karthik

  • ORA-03113 and ORA-03114

    Hi..
    When I access our Oracle database with SQL*Plus, from a client machine, after 10 or 15 minutes without requests to the server database, I get these error messages. But when I am running the proccesses from the machine server, it's not happens.
    Could anyboby help me?
    Thanks in advance.
    Rafael.
    null

    I seem to have 8.1.7 creating a database with RH Linux 7.1 now. This was an important clue, since 7.1 hiccups 65% into the link phase of installation, thereby requiring the stubs patch to be run at that time, whereas 7.0 runs quite happily through the install & link without using the patch.
    HOWEVER... before invoking dbassist to create the database under 7.1, you apparently need to export ASSUME_LD_LIBRARY = 2.2.5, etc., again, as you would do for the first time installing under RH 7.0.
    null

  • Script needed to detect the Ora-03113

    Hello All,
    We are facing strange problem in our customer testbed.
    Oracle sporadically stop working with ora-03113 "End of communication channel".
    To prevent the problem we have to restart the machine.
    Is it possible to schedule a scripts which will detect the ora-03113 and restart the Oracle service. So that we don't have huge downtime during night when nobody is monitoring the machine.
    Note: Oracle version 9i in windows 32 bit. The problem recovered automatically within 30 min (approx) if machine is not rebooted.
    Thanks
    With Regards
    Hemant.

    Oracle Enterprise Manager (comes free with Oracle) can monitor the alert, generate an event, and run a fixit script to reboot the database.
    It only requires some installation and some reading, but no homegrown scripts are required.
    Sybrand Bakker
    Senior Oracle DBA
    Experts: those who did read the documentation

  • Application batch job running got error ORA-03113

    Problem: when application batch job running, application system always receive this error: ORA-03113 and job stop.
    Application system: dynamic system AX
    ORACLE system: ORACLE 10.2.0.4.0
    The listener configuration setting is :
    INBOUND_CONNECT_TIMEOUT_LISTENER = 0
    SUBSCRIBE_FOR_NODE_DOWN_EVENT_LISTENER = OFF
    Whether this is the problem of listener setting? "INBOUND_CONNECT_TIMEOUT_LISTENER = 0" indicate 0 seconds or no limit?

    I only find the error message in the Client server (application server).
    below is some example of it.
    The database reported (session 56 (mtihz)): ORA-03114: not connected to ORACLE
    . The SQL statement was: "SELECT A.PURCHID,A.PURCHNAME,A.ORDERACCOUNT,A.INVOICEACCOUNT,A.FREIGHTZONE,A.EMAIL,A.DELIVERYDATE,A.DELIVERYTYPE,A.ADDRESSREFRECID,A.ADDRESSREFTABLEID,A.INTERCOMPANYORIGINALSALESID,A.INTERCOMPANYORIGINALCUSTACCO12,A.CURRENCYCODE,A.PAYMENT,A.CASHDISC,A.PURCHPLACER,A.INTERCOMPANYDIRECTDELIVERY,A.VENDGROUP,A.LINEDISC,A.DISCPERCENT,A.DIMENSION,A.DIMENSION2
    Object Server 01: The database reported (session 58 (zhlhz)): ORA-03113: end-of-file on communication channel
    . The SQL statement was: "SELECT A.SPECTABLEID,A.LINENUM,A.CODE,A.BALANCE01,A.REFTABLEID,A.REFRECID,A.SPECRECID,A.PAYMENT,A.PAYMENTSTATUS,A.ERRORCODEPAYMENT,A.FULLSETTLEMENT,A.CREATEDDATE,A.CREATEDTIME,A.RECVERSION,A.RECID FROM SPECTRANS A WHERE ((SUBSTR(NLS_LOWER(DATAAREAID),1,7)=NLS_LOWER(:in1)) AND ((REFTABLEID=:in2) AND (REFRECID=:in3)))"
    but when I use PL/SQL Developer to run the scripts. there is no problem.
    And we always met errors when application team run long time batch, about 20 - 30 minutes or even longer.
    When they run 5 or 10 minutes job, there is no error occur.

  • No Oracle processes running Oracles Shared segments not cleaned up

    I've been running into situations where a databases SGA isn't cleaned up from memory but no Oracle processes are running. I always thought that if the Oracle processes die the instance does too, but that doesn't appear to be the case. There's a script that pulls down databases to refresh DB copies. My initial thought was that in certain situations the db isn't shutdown and the files are overwritten, but I have not been able to reproduce it. There's nothing in the Alert.log.... no errors what so ever. In what sort of circumstances would you see a databases SGA still in memory and no Oracle processes running? I can cleanup the shared memory segments.... I'm more concerned about understanding how it is occurring.
    Any insight would be appreciated.
    Thanks

    Please reread your post with great care.
    Do you see a platform and operating system?
    Do you see a product name and full version number?
    Do you see a description of which commands were executed?
    Good. Because I don't either.
    Post a full and complete description of the environment so we can try to replicate it.

  • ORA-03113 on Crystal Report and VS with 32bit Win7 and 64bit Oracle DB

    we have moved our database to a new server which is 64bit. (earlier database was 32bit)
    when i try to connect my crystal report or Vs .net to the new server i'm getting below error.
    ORA-03113: end-of-file on communication channel
    my computer is Win 7 (32bit)
    Can someone give me a solution to this please

    we have moved our database to a new server which is 64bit. (earlier database was 32bit)
    when i try to connect my crystal report or Vs .net to the new server i'm getting below error.
    =======================
    for printer ink

  • Oracle 8.1.5, ORA-03113: end-of-file on communicat

    My Environment:
    ====================
    Unix Solaris 7
    jre 1.1.6; using native threads (sparc)
    Oracle 8i 8.1.5
    Netscape Enterprise Server 3.6
    Servlet Exec 2.0.2 plugin for NE Server
    LD_LIBRARY_PATH is set to include oracle libraries.
    CLASSPATH is set to include oracle classes111.zip
    and nls_charset10.zip.
    Include sample program JdbcCheckup confirmed that
    oracle installation is correct.
    Problem:
    ========
    Our servlet accesses Oracle DB using oci8 drivers.
    We are able to succesfully run simple queries
    (accessing only 1 table) with result set containing
    upto 9882 rows. However, a more complicated query,
    accessing 3 tables (one table contains 9882 rows)
    and performing a join, usually fails. By some miracle,
    it run couple of times after we accessed the same tables
    a few times with some simple queries (probably, some data
    were cached by Oracle and succesfully reused).
    Query fails with the message specified in the subject:
    SQLException: ORA-03113: end-of-file on communication channel
    If we try to repeat the same query with the same connection,
    we get:
    ORA-01041: internal error. hostdef extension doesn't exist
    Any ideas ? Thanks.
    Bozhena Bidyuk
    Here is a stack trace for ORA-03113:
    at oracle.jdbc.oci8.OCIDBAccess.check_error(OCIDBAccess.java)
    at oracle.jdbc.oci8.OCIDBAccess.fetch(OCIDBAccess.java)
    at
    oracle.jdbc.driver.OracleStatement.doExecuteQuery(OracleStatement
    .java)
    at
    oracle.jdbc.driver.OracleStatement.doExecute(OracleStatement.java
    at
    oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleSta
    tement.java)
    at
    oracle.jdbc.driver.OracleStatement.executeQuery(OracleStatement.j
    ava)
    at JdbcDbs.doQuery(JdbcDbs.java)
    at HandleRequests.doQuery(HandleRequests.java)
    at HandleRequests.process(HandleRequests.java)
    at DataPortServlet.service(DataPortServlet.java)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
    at
    newatlanta.servletexec.ServletThread.run(ServletThread.java:122)
    null

    jreynolds wrote:
    I've already given the developers a changed version that works, but here's the part I don't understand. When it's run as is I get the Ora-03113, but if I change the alias in the subquery select to og (the outer query alias), this sql runs. What is it about selecting the subquery column that is used in the where portion of the exists that makes oracle 9.2.0.1 on windows 2003 enterprise server lose the connection.
    Any ideas would be greatly appreciated.
    thanks in advance.You're using an unpatched base release and simply hitting a bug that causes the server foreground process that serves your request to fail with an exception that causes the operating system to kill the corresponding process (e.g. segment access violation, general protection fault, you name it).
    As a workaround use the rewritten query you've already found out but you should consider to install at least the 9.2.0.8 patch set to prevent most of such nasty bugs in the future.
    Regards,
    Randolf
    Oracle related stuff blog:
    http://oracle-randolf.blogspot.com/
    SQLTools++ for Oracle (Open source Oracle GUI for Windows):
    http://www.sqltools-plusplus.org:7676/
    http://sourceforge.net/projects/sqlt-pp/

  • Error: ORA-03113 while executing complex java code from Oracle PL/SQL

    Hi,
    I am trying to execute a complex java code from Oracle PL/SQL. The classes were resolved successfully. But in the middle of execution, I am getting the following error:
    ERROR:
    ORA-03114: not connected to ORACLE
    begin
    ERROR at line 1:
    ORA-03113: end-of-file on communication channel
    Process ID: 13685
    Session ID: 21 Serial number: 20
    Is there a way to debug the Java classes loaded into oracle? Or is there any utility to find out why the connection was lost?
    Regards,
    Saravana

    Hi Saravana:
    You could use simply System.out.println(..) at your Java code and see the output at the .trc files generated for your Oracle session.
    Or better than this adding Java Util Logging messages at your code, to see how to use JUL API at the OJVM please see this blog post [Using JUL API inside the OJVM|http://marceloochoa.blogspot.com/2007/11/getting-logging-entering-exiting-and.html].
    Best regards, Marcelo.
    PD: ora-0600 generally are associated with RDBMS bugs, but these bugs can be bypassed by replacing the code which throws the exception by other with a workaround.

Maybe you are looking for

  • Mail and Safari no longer connect to the Internet, but connection is live?

    I have a Quicksilver G4 running OSX 10.4.11 with Safari 3.0.4 and Mail 2.1.3, connected to the Internet via Ethernet and a BT home Hub setup. Recently the Mac refused to connect to the Internet although a PC connected to the same hub did. I tested th

  • IOS 8.1 Music app not allowing search by artist

    On my iPhone 4S, I usually search music by artist. Since the update to 8.1, my phone no longer responds to searching through the alphabet down the RHS for Artist. It does for the Category Songs , but not for Artists. Have others experienced this?  Is

  • Startup Chimes with audio cable connected?

    My Mini has started to sound it's healthy startup chime even when there is an audio cable connected to the audio/headphone output. The output works fine and sends audio to the speakers, but how can I mute the chime at startup? Previously it always mu

  • [svn] 3932: Integrate revision 3913 and 3922 from 3.0.x (aka Blaze 3.2):

    Revision: 3932 Author: [email protected] Date: 2008-10-28 12:33:43 -0700 (Tue, 28 Oct 2008) Log Message: Integrate revision 3913 and 3922 from 3.0.x (aka Blaze 3.2): BLZ-272 Two long polling endpoints not working in same app. The long polling waitMon

  • Camera for Chatting

    I have an iBook G4 and I believe it was the last Mac made without a camera built into it. I would like to get a camera, but Mac stopped selling them through the store. Can you suggest a camera that I could get that works. I live in Italia and I went