Personal Oracle 8i Database Create Error

I am trying to set up personal oracle on a Dell notebook with 128MB ram and windows ME.
When I have installed the software it tries to create a database - this procedure crashes with a Page Fault in a Dos window and from then on the Notebook completely freezes.
Any ideas from anyone - I'm desperate
null

Have you found a solution to your problem?
I'm having the same problem installing it on a Gateway E-3400.

Similar Messages

  • Personal Oracle 8i Database startup password

    Can someone provide the database startup password for Personal Oracle 8i.I have tried passwords like "oracle","sys","manager"in both uppercase and lowercase.
    None of this works.I have read the required documentation for the same.But I haven't recd any information.
    Thanks.

    Hi,
    Normally this combination should work.
    Anyway, try this out.
    In the command prompt,
    set ORACLE_SID=<sid name>
    start server manager/svrmgrl
    connect internal.
    At this juncture , if you are getting errors, exit the svrmgr application.
    try to reset the password for internal with a new password file. (Backup the old one).
    Tr connecting.
    Regards
    Lakshmanan, K

  • Standby database creating error oracle 10g

    Hi
    i created standby database,but i cannot access primary database data. the standby database opened read only.
    but i cannot access data from primary.so i check query in standby database,
    SQL> SELECT SEQUENCE#, FIRST_TIME, NEXT_TIME FROM V$ARCHIVED_LOG ORDER BY SEQUENCE#;
    no rows selected.
    what i mistake
    Regards
    S.Azar

    It you are not seeing any errors in the primary alert log, then I think that you have defined log_archive_dest_2 to use LOCATION instead of SERVICE. Archive logs have to be transmitted through Oracle Net in order to be automatically registered by the standby database.
    Hope this helps.
    Regards,
    Satishbabu Gunukula
    http://oracleracexpert.blogspot.com
    [Backup and Recovery of OCR|http://oracleracexpert.blogspot.com/2009/08/backup-and-recovery-of-ocr-oracle.html]

  • Oracle 9i Database installation error ORA-27102: out of memory HELP

    Hello
    Appologies if this post has been answered already, or if I am meant to post some data capture to show what is the issue however i am a bit unsure what I need.
    I have downloaded oracle 9i for my university course as I need to have it to do some SQL and Forms building.
    I have had a lot of issues but I have battled through them - however now I am stuck on this one.
    I install Oracle and then the below:
    Install Oracle Database 9.2.0.1.0
    Personal Edition 2.80gb
    General Purpose
    I leave the defualt port
    Set my database name
    Select the location
    Character set etc
    then the database config assistant starts to install the new database at 46% i get the error on a pop up window :
    ORA-27102: out of memory
    How can I resolve this??
    I am a mainframe programmer and not at all in anyway a windows whizz - please oculd someone help a dummy understand??
    Again thank you all very much

    You have too few RAM on your machine, even you could successfully create an instance, it's going to slow as hell.
    When you run DBCA to create database, instead of actually creating the database you could choose to dump the SQL scripts and files used for database creation to a directory. This way will give you a chance to modify pfile and reduce the SGA parameter. I believe the default SGA of instance created by DBCA is already beyond your RAM limit.

  • Oracle 8i Database Connection Error

    Hello
    I have installed Oracle8i Enterprise on WinNT
    4.0.However I am unable to connect to the
    database thru' SQLPlus and I am getting the above error "TNS COULD NOT RESOLVE SERVICE NAME".I also checked the same thru' Net8i
    assistant and tried testing of connection to database which has been created under my name
    "Sumit" .I am therefore unable to connect to the database and getting similar errors ORA-12541 and sometimes ORA-01034.Please help me out.The login user name I am using is "scott"
    password "tiger" and hoststring is "Sumit".
    Thanks

    Dear Sudip,
    Thanks a lot for responding to my message ..I had lost hope of
    receiving a response.Sudip,I tried connecting throu' Net8 configuration
    as "SYSTEM" and password "MANAGER" but couldnt connect thro'.Although
    I must mention that I could log on to SQLPLUS as INTERNAL/ORACLE after
    which I gave the STARTUP command .The Oracle instance got started
    however it also gave me an error ORA-00205 "error in identifying
    controlfile, check alert log for more info".Now I tried to create a
    SCOTT/TIGER schema but the script does not run and I get the following
    error
    SP2-0310: unable to open file "OraHome81\RDBMS\ADMIN\SCOTT.SQL"
    and the same with "Sumit\RDBMS\ADMIN\SCOTT.SQL" .I am neither able to
    create a table as it gives "database not open error" .
    Sudip there is another aspect which I would like to bring to your
    attention .It is that in the Control panel,when I click the server icon
    it gives me "not enough server memory to process this command".
    Also when I click the Services icon and try to start the
    OraHome81Management server it gives me "the system could not find the
    environment option that was entered" and is unable to start and with
    the OraHome81TNSListener it gives me "the process terminated
    unexpectedly " error and is unable to start either.
    Now I wonder where the problem could lie !.Could it be with the OS
    --WinNt and if so what could be the way to rectify it.Please help if
    you can or alternatively if you know about any other forum where this
    problem can be addressed..Thanks again..REGARDS
    Sumit

  • Unable to connect to Personal Oracle 9i database

    I have loaded Borland Jbuilder 8 and Oracle 9i Release 1 Personal Edition in WinXP
    When i try to compile the below code , i get the Error
    Exception in thread "main" java.lang.NoClassDefFoundError
    I have set my CLASSPATH to c:\oracle\ora90\jdbc\lib\classes12.zip
    import java.sql.*;
    class Employee
    public static void main (String args [])
    throws SQLException
    // Load the Oracle JDBC driver
    DriverManager.registerDriver(new oracle.jdbc.OracleDriver());
    String url = "jdbc:oracle:oci8:@test";
    try {
    String url1 = System.getProperty("JDBC_URL");
    if (url1 != null)
    url = url1;
    } catch (Exception e) {
    Connection conn =
    DriverManager.getConnection (url, "scott", "tiger");
    Statement stmt = conn.createStatement ();
    ResultSet rset = stmt.executeQuery ("select ENAME from EMP");
    while (rset.next ())
    System.out.println (rset.getString (1));
    rset.close();
    stmt.close();
    conn.close();
    Is there anything else i have to do. I even tied compiling from command line but i got the same error. Any help will be higly appreciated

    2) Make sure, you have ojdbc14.jar and nls_charset12.zip in your >CLATHPASS, I have it both for user and system varables, to be on the >safe side).
    I don't think you need classes12.zip in the CLASSPATH.
    Just fyi: for JDK 1.2.x 1.3.x, you need to have classes12.zip and >nls_charset12.zip in the CLASSPATH to work, but I didn't try it since >I have 1.4venyP, I am not questioning your post because I am still pretty new to Java (I started writing Java since February). However, I don't have any of those jar file or zip file in my CLASSPATH, and I am using JDK 1.3.1.
    I am using 1.3.1 because back in February when I visited the Sun site, their J2EE 1.4 was still in beta, therefore, I downloaded the 1.3.1 of both J2EE and J2SE.
    Like the original poster, I am also using Oracle 9.2 and JBuilder 8. And I never ever have to do any tweaking to my CLASSPATH. Everything works beautifully. I can compile and run any Java program from JBuilder, from Eclipse, and from the command prompt. No problem whatsoever.
    That's why I don't understand why everybody is talking about all these modification to the CLASSPATH.
    Just wondering. Thanks.

  • SQL Server 2008 64-bit - Master Data Services troubleshoot database create Error

    I am getting the following error when trying to create a new database in SQL server using MDS
            Microsoft.MasterDataServices.Configuration.ConfigurationException: Data is Null. This method or property cannot be called on Null values. ---> System.Data.SqlTypes.SqlNullValueException: Data is Null. This method or
    property cannot be called on Null values.
               at System.Data.SqlClient.SqlBuffer.get_String()
               at Microsoft.MasterDataServices.Configuration.DatabaseUtilities.GetDatabases(DatabaseServerInformation server)
               at Microsoft.MasterDataServices.Configuration.Commands.NewMasterDataServicesDatabase.InternalProcessRecord()
               at Microsoft.MasterDataServices.Configuration.Commands.ConfigurationCmdlet.ProcessRecord()
               at System.Management.Automation.CommandProcessor.ProcessRecord()
               --- End of inner exception stack trace ---
              at Microsoft.MasterDataServices.Configuration.InstanceManager.Execute(Command command)
               at Microsoft.MasterDataServices.Configuration.InstanceManager.CreateMasterDataServicesDatabase(DatabaseServerInformation serverInformation, DatabaseInformation databaseInformation)
               at Microsoft.MasterDataServices.Configuration.UI.MdsDatabase.CreateNewDatabase()
    How can this error be resolved?
    Thanks

    Just double check the code and history.
    The bug is fixed in 2011/08/23 and made into SQL 2012 RTM. So I assume you are using 2008 R2, which mainstream support is ended. I am not able to push a fix to that.
    https://msdn.microsoft.com/en-us/library/ms178534.aspx
    collation_name
    sysname
    Collation for the database. Acts as the default collation in the database.
    NULL = Database is not online or AUTO_CLOSE is set to ON and the database is closed.
    The only option would be fix the NULL collation databases.

  • Oracle 8i database: FATAL ERROR IN TWO-TASK SERVER

    Hi,
    We've been using Portal 3.0.7.6.2 since it was available. We've just upgraded to Oracle Database 8.1.6.3 (to resolve Apache GPF crashing problems) and have now noticed that our database server process terminates with a fatal error when we try to administer users, though in particular, adding users to existing groups. Error message as follows:
    *** SESSION ID:(8.8) 2001-01-16 16:43:16.140
    FATAL ERROR IN TWO-TASK SERVER: error = 12571
    *** 2001-01-16 16:43:16.156
    ksedmp: internal or fatal error
    ORA-12571: TNS:packet writer failure
    ORA-06512: at line 18
    The only way to recover is to terminate the instance's service and restart. This happens every time we add more than 2 users to a group.
    Any help would be appreciated.
    Gary

    Hi..
    From metalink
    >
    # symptom: FATAL ERROR IN TWO-TASK SERVER:
    # symptom: ERROR = 12571
    # symptom: trace file generated
    # symptom: Database operations continue successfully
    # cause: The most common cause for the above error is an ungraceful disconnection of a session from the oracle db while the db is currently running a dml statement issued by that session. The error is recorded when oracle attempts to reply back to the session with the results of the dml and cannot access the session. Overall database operations are usually not affected.
    ====================
    The ora-12571 error usually occurs when the client abruptly terminates with a Ctrl-C or powers down.
    OR
    The ora-12571 error, usually, indicates an instability with Oracle with the network. Communication Gap between eHub and Database Server.
    >
    Refer to Doc ID: 164839.1 and Doc ID: 576929.1 on metalink
    HTH
    Anand
    Edited by: Anand... on Jan 16, 2009 1:18 PM DoC ID added

  • Database create error due to folder access right.

    I have an application which will create a SQL database(using CREATE DATABASE) and the database files are supposed to be placed in c:\program files\myApp\data\myDatabase.mdf
    However, when I try to do so, I get the following error:
    System.ApplicationException: System.Data.SqlClient.SqlException: CREATE DATABASE failed. Some file names listed could not be created. Check related errors.CREATE FILE encountered operating system error 5(Access Denied) while attempting to open or create the physical file 'C:\Program Files\myApp\data\myDatabase.mdf'.
    My window login already have administrator role.
    The problem can be solved if I manually add full access right to my login in window exploder.  However, how can I do this programmatically?  Or what is the proper way to create database located under my application folder?

    I get this error ("error 5(Access is denied) while attempting to open or create the physical file...") under the following circumstances:
    1) Using SSE
    2) create a database
    3) Attach to it with SQL Server Studio
    4) Detach
    5) Attach again -- I then get the error. 
    I tried stopping and restarting the server - no success.  I can recreate the database and get my one-shot access again so, at this point, I'm lost.

  • Oracle 11g database installation error

    Hi all,
    I try to install oracle database 11g in my machine but end of the installation getting some error like OUI -25031 as follows.pls help me
    Execution of the plugin was aborted
    INFO: Configuration assistant "Oracle Net Configuration Assistant" was canceled.
    *** Starting OUICA ***
    Oracle Home set to d:\oracle11g
    Configuration directory is set to d:\oracle11g\cfgtoollogs. All xml files under the directory will be processed
    INFO: The "d:\oracle11g\cfgtoollogs\configToolFailedCommands" script contains all commands that failed, were skipped or were cancelled. This file may be used to run these configuration assistants outside of OUI. Note that you may have to update this script with passwords (if any) before executing the same.
    INFO:
    The Runconfig command constructed is D:\oracle11g\oui\bin\runConfig.bat ORACLE_HOME=D:\oracle11g MODE=perform ACTION=configure RERUN=false $*
    INFO: Since there is an Internal Plugin Invocation or a Java Plugin Invocation tool in the Oracle Home D:\oracle11g we use the runConfig Command instead of the plugin's command
    INFO: Since the option is to overwrite the existing D:\oracle11g\cfgtoollogs\configToolFailedCommands file, backing it up
    INFO: The backed up file name is D:\oracle11g\cfgtoollogs\configToolFailedCommands.bak.15
    SEVERE: OUI-25031:Some of the configuration assistants failed/cancelled. It is strongly recommended that you retry the configuration assistants at this time. Not successfully running any "Recommended" assistants means your system will not be correctly configured.
    1. Check the Details panel on the Configuration Assistant Screen to see the errors resulting in the failures.
    2. Fix the errors causing these failures.
    3. Select the failed assistants and click the 'Retry' button to retry them.
    INFO: User Selected: Yes/OK
    INFO: --------------------------------------
    INFO: The "d:\oracle11g\cfgtoollogs\configToolFailedCommands" script contains all commands that failed, were skipped or were cancelled. This file may be used to run these configuration assistants outside of OUI. Note that you may have to update this script with passwords (if any) before executing the same.
    INFO: The "d:\oracle11g\cfgtoollogs\configToolAllCommands" script contains all commands to be executed by the configuration assistants. This file may be used to run the configuration assistants outside of OUI. Note that you may have to update this script with passwords (if any) before executing the same.
    INFO:
    The Runconfig command constructed is D:\oracle11g\oui\bin\runConfig.bat ORACLE_HOME=D:\oracle11g MODE=perform ACTION=configure RERUN=false $*
    INFO: Since there is an Internal Plugin Invocation or a Java Plugin Invocation tool in the Oracle Home D:\oracle11g we use the runConfig Command instead of the plugin's command
    INFO: Since the option is to overwrite the existing D:\oracle11g\cfgtoollogs\configToolFailedCommands file, backing it up
    INFO: The backed up file name is D:\oracle11g\cfgtoollogs\configToolFailedCommands.bak.16
    SEVERE: OUI-25029:One or more "Recommended" configuration assistants have not completed successfully. Not successfully running any "Recommended" assistant means your system will not be correctly configured.
    INFO: User Selected: Yes/OK
    WARNING: Do you really want to exit?
    INFO: User Selected: Yes/OK
    INFO: The OUICA command is launched from D:\oracle11g\oui\bin\ouica.bat.
    INFO:
    *** End of Installation Page***
    The installation of Oracle Database 11g was successful, but some configuration assistants failed, were cancelled or skipped.
    by
    vijay
    Edited by: 849135 on Jun 20, 2011 3:15 AM

    Hi,
    Pl. post complete error stack and mention the OS type and version.
    thanks,
    X A H E E R

  • Oracle 10g Database installation error

    I have come up with the message below when I click on setup.exe to launch OUI.
    Using paramFile: C:\Oracle_Setup\stage\Components\oracle.swd.oui\2.3.0.10.0\1\DataFiles\Expanded\bin\win32\oraparam.ini
    Checking requirements...
    Checking operating system version: must be 4.0, 5.0, 5.1 or 5.2.
    Actual 5.1 Passed
    Checking monitor: must be configured to display at least 256 colors.
    Actual 65536 Passed
    Checking if CPU speed is above 300 MHz.
    Actual 3006MHz Passed
    All requirements met.
    However, when the checking requirements process is done,
    there's pop up window titled "Java Virtual Machine Launcher" saying "Could not find the main class. Program will exit".
    I have tried to change the location of JRE in oraparam.ini file for searching the main class. But it does not work. Please help. Is this because my oraparam.ini does not indicate the location of the main class required for the JVM launcher?
    Thank you very much

    Thanks for the help. However, I am not sure what you meant in your answer.
    Let me show my oraparam.ini file below. Please let me know if there's anything to be changed in the file. Thanks a lot.
    [Oracle]
    DISTRIBUTION=FALSE
    SOURCE=C:\Oracle_Setup\stage\products.jar
    LICENSE_LOCATION=
    JRE_LOCATION=C:\Oracle_Setup\stage\Components\oracle.swd.jre\1.4.2.0.0\1\DataFiles\Expanded
    OUI_LOCATION=C:\Oracle_Setup\stage\Components\oracle.swd.oui\2.3.0.10.0\1\DataFiles\Expanded\ouica\win32
    OUI_CORE_LOCATION=C:\Oracle_Setup\stage\Components\oracle.swd.oui\2.3.0.10.0\1\DataFiles\Expanded
    DEFAULT_HOME_LOCATION=
    DEFAULT_HOME_NAME=
    "OUIHome"
    NLS_ENABLED=TRUE
    JRE_MEMORY_OPTIONS=" -mx96m"
    NO_BROWSE=/net
    BOOTSTRAP=FALSE
    THIN_JDBC_FILENAME=classes12.jar
    #THIN_JDBC_FILENAME is optional and defaults to classes12.jar
    #The value specified for this should be packaged with OUI, and should
    #be relative to <OUI expanded stagedir>/jlib/
    THIN_JDBC_FILENAME=classes12.jar
    #JRE_OSDPARAM is to set OS dependent param for JRE ( mainly for native VM in 1.3.1)
    #JRE_OSDPARAM is optional and should be set to -native for the JRE's
    #that support native VM ( mainly for Unix platforms ), in JRE 1.3.1
    #For JRE 1.4.1 this should be set to empty or the type of VM that is
    #supported client/server. The default value is -native in UNIX platforms
    #that supports native VM
    #Unix supporting native -
    JRE_OSDPARAM=""
    CLUSTERWARE={"oracle.crs","10.1.0.2.0"}
    #Unix NOT supporting native and 1.4.1 - JRE_OSDPARAM=""
    #Windows : DO NOT SET or JRE_OSDPARAM=""
    OUI_VERSION=<2.3.0.10.0>
    #RUN_OUICA specifies the batch script name that needs to be run
    #The script is ouica.bat for win32, and ouica.sh for solaris.
    #If the value is not specified, then the OUICA script is not run
    RUN_OUICA=ouica.bat
    #SHOW_HOSTNAME=ALWAYS_SHOW
    #shows the hostname panel always
    SHOW_HOSTNAME=NEVER_SHOW
    #does not the hostname panel
    #SHOW_HOSTNAME=CONDITION_SHOW
    #shows the hostname panel on condition
    #SHOW_HOSTNAME=NEVER_SHOW
    [Certified Versions]
    #You can customise error message shown for failure through CERTIFIED_VERSION_FAILURE_MESSAGE
    Solaris=5.6,5.7,5.8,5.9
    Windows=4.0,5.0,5.1,5.2
    Linux=redhat-2.1AS
    HPUX=B.11.11
    Decunix=V5.1A,V5.1
    AIX=5.1.0.0
    [Solaris-5.6-required]
    #Minimum temp space required by OUI, Increase it if your product installation so requires
    #Temp space is required for bootstrap and during installation
    #The TEMP_SPACE should be the first pre-req to be checked
    TEMP_SPACE=150
    #PACKAGES required by JRE and Product, /usr/bin/pkginfo gets list of packages on system
    PACKAGES=
    #Use PACKAGES_FAILURE_MESSAGE for custom error message for PACKAGES check failure
    #CPU speed required, use /usr/sbin/psrinfo -v to get the speed
    CPU=300
    #Use CPU_FAILURE_MESSAGE to display custom error message for CPU check failure
    #MIN_DISPLAY_COLORS required by OUI, use /usr/openwin/bin/xdpyinfo to get the colors
    MIN_DISPLAY_COLORS=256

  • Personal Oracle 8.1.5, Installation Problem

    I installed Personal Oracle (Windows NT)8.1.5 and
    I installed Oracle Client 8.1.6
    Personal Oracle (main database: ZEUS) works fine! only if I am at network.
    As soon as I undock my laptop, personal Oracle does not allow me to get connection through sqlplus.
    I checked listeners:
    File:D:\Oracle\Ora81\NETWORK\ADMIN\listener.ora
    ZEUS =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = sashb)(PORT = 1521))
    (PROTOCOL_STACK =
    (PRESENTATION = TTC)
    (SESSION = NS)
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 1521))
    (PROTOCOL_STACK =
    (PRESENTATION = TTC)
    (SESSION = NS)
    seems they are fine. sql.ora - looks like fine as well!
    File: D:\Oracle\Ora81\NETWORK\ADMIN\sqlnet.ora
    SQLNET.CLIENT_REGISTRATION = sashb
    NAMES.PREFERRED_SERVERS =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = sashb)(PORT = 1521))
    configuration file ... find!
    Configuration File:D:\Oracle\Ora81\NETWORK\ADMIN\tnsnames.ora
    ZEUS.LAN.MIL =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = SASHB)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = ZEUS)
    EXTPROC_CONNECTION_DATA.LAN.MIL =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC0))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    The question is very simple, why the personal Oracle works inside network, and it does not work if I undock my system?
    If I need to make any changes, what changes must be done?
    It is window NT, Service pack 5.
    Personal Oracle installed with default settings at D: drive, with default directory settings.
    PS.
    I tryed to shutdown database, listeners, and startup listeners, and after this database--did not help. I check registry... seems fine.
    What is missed?
    Thank you very much.
    Alexander

    newbie (guest) wrote:
    : Hi, All
    : I tried to install oracle 8.1.5 on RH6.0,
    : and I download the patch for enlightment,
    : the installation works well until CREATE DATABASE.
    : I got the error message "ORA-01012 not logged on".
    : Does anybody know what's the problem?
    : Thanks,
    Hi,
    try to
    export NLS_LANG=american
    In my case it helped. I described the strange behaviour of
    svrmgrl in detail in another post.
    Greetings
    Rolf
    null

  • Connecting graph from personal oracle

    while trying to connect graph builder from
    personal oracle 8.0 , following error do
    come
    PDE-PER-001 INTERNAL ERROR , null password given , logon denied.
    missing mandatory parameter.
    while running graphs from report - following
    error come
    Error occur while runing the called developer
    component --- unable to create pl/sql developer environment content

    You mean that once I have my Oracle8i Enterprise Edition Release 8.1.6.1.0 server up I will have to use the EXP Export utility of 8.1.6.1.0 to export the database from the Personal Oracle Version 8.1.7.0.0

  • Installing IBM Websphere Advanced Edition 3.0 and connecting to Oracle 81 database

    When we install IBM Websphere Advanced Edition 3.o for Solaris and try connecting to the Oracle 81 database some errors were faced as below
    003.820 1ef19816 ConnectionPoo W Failure while creating connection java.sql.SQLException: Io exception: Connection refused(DESCRIPTION=(TMP=)(VSNNUM=135290880)(ERR=12505)(ERROR_STACK=(ERROR=(CODE=12505)(EMFI=4))))
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled Code)
    at java.sql.SQLException.<init>(Compiled Code)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(Compiled Code)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(Compiled Code)
    at oracle.jdbc.driver.OracleConnection.<init>(Compiled Code)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(Compiled Code)
    at oracle.jdbc.driver.OracleDriver.connect(Compiled Code)
    at java.sql.DriverManager.getConnection(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext.ConnectionPool.<init>(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext._ConnMgrBaseImpl.getConnectionPool(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext.ConnectionManager.getConnectionPool(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext.SMDataSource.getConnection(Compiled Code)
    at com.ibm.ejs.ns.CosNaming.CreateNsTables.dbInit(Compiled Code)
    at com.ibm.ejs.ns.CosNaming.NameServer.init(Compiled Code)
    at com.ibm.ejs.sm.server.ManagedServer.initializeNameService(Compiled Code)
    at com.ibm.ejs.sm.server.ManagedServer.initializeRuntime(Compiled Code)
    at com.ibm.ejs.sm.server.AdminServer.initializeRuntime(Compiled Code)
    at com.ibm.ejs.sm.server.AdminServer.main(Compiled Code)
    003.856 1ef19816 CreateNsTable W Failed to get a connection java.sql.SQLException: Io exception: Connection refused(DESCRIPTION=(TMP=)(VSNNUM=135290880)(ERR=12505)(ERROR_STACK=(ERROR=(CODE=12505)(EMFI=4))))
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled Code)
    at java.sql.SQLException.<init>(Compiled Code)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(Compiled Code)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(Compiled Code)
    at oracle.jdbc.driver.OracleConnection.<init>(Compiled Code)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(Compiled Code)
    at oracle.jdbc.driver.OracleDriver.connect(Compiled Code)
    at java.sql.DriverManager.getConnection(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext.ConnectionPool.<init>(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext._ConnMgrBaseImpl.getConnectionPool(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext.ConnectionManager.getConnectionPool(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext.SMDataSource.getConnection(Compiled Code)
    at com.ibm.ejs.ns.CosNaming.CreateNsTables.dbInit(Compiled Code)
    at com.ibm.ejs.ns.CosNaming.NameServer.init(Compiled Code)
    at com.ibm.ejs.sm.server.ManagedServer.initializeNameService(Compiled Code)
    at com.ibm.ejs.sm.server.ManagedServer.initializeRuntime(Compiled Code)
    at com.ibm.ejs.sm.server.AdminServer.initializeRuntime(Compiled Code)
    at com.ibm.ejs.sm.server.AdminServer.main(Compiled Code)
    004.208 1ef19816 AdminServer A Initializing WebSphere Administration server
    004.228 1ef1ff18 DrAdminServer A DrAdmin available on port 36,133
    004.248 1ef19816 ConnectionPoo W Failure while creating connection java.sql.SQLException: Io exception: Connection refused(DESCRIPTION=(TMP=)(VSNNUM=135290880)(ERR=12505)(ERROR_STACK=(ERROR=(CODE=12505)(EMFI=4))))
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled Code)
    at java.sql.SQLException.<init>(Compiled Code)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(Compiled Code)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(Compiled Code)
    at oracle.jdbc.driver.OracleConnection.<init>(Compiled Code)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(Compiled Code)
    at oracle.jdbc.driver.OracleDriver.connect(Compiled Code)
    at java.sql.DriverManager.getConnection(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext.Connect ionPool.<init>(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext._ConnMgrBaseImpl.getConnectionPool(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext.ConnectionManager.getConnectionPool(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext.SMDataSource.getConnection(Compiled Code)
    at com.ibm.ejs.sm.util.db.DBMgr.initialize(Compiled Code)
    at com.ibm.ejs.sm.server.AdminServer.startConnectionMgr(Compiled Code)
    at com.ibm.ejs.sm.server.AdminServer.initializeRuntime(Compiled Code)
    at com.ibm.ejs.sm.server.AdminServer.main(Compiled Code)
    004.263 1ef19816 DBMgr F Failed to create a data source: java.sql.SQLException: Io exception: Connection refused(DESCRIPTION=(TMP=)(VSNNUM=135290880)(ERR=12505)(ERROR_STACK=(ERROR=(CODE=12505)(EMFI=4))))
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled Code)
    at java.sql.SQLException.<init>(Compiled Code)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(Compiled Code)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(Compiled Code)
    at oracle.jdbc.driver.OracleConnection.<init>(Compiled Code)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(Compiled Code)
    at oracle.jdbc.driver.OracleDriver.connect(Compiled Code)
    at java.sql.DriverManager.getConnection(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext.ConnectionPool.<init>(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext._ConnMgrBaseImpl.getConnectionPool(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext.ConnectionManager.getConnectionPool(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext.SMDataSource.getConnection(Compiled Code)
    at com.ibm.ejs.sm.util.db.DBMgr.initialize(Compiled Code)
    at com.ibm.ejs.sm.server.AdminServer.startConnectionMgr(Compiled Code)
    at com.ibm.ejs.sm.server.AdminServer.initializeRuntime(Compiled Code)
    at com.ibm.ejs.sm.server.AdminServer.main(Compiled Code)
    FATAL Failed to create a data source: {0} java.sql.SQLException: Io exception: Connection refused(DESCRIPTION=(TMP=)(VSNNUM=135290880)(ERR=12505)(ERROR_STACK=(ERROR=(CODE=12505)(EMFI=4))))
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled Code)
    at java.sql.SQLException.<init>(Compiled Code)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(Compiled Code)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(Compiled Code)
    at oracle.jdbc.driver.OracleConnection.<init>(Compiled Code)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(Compiled Code)
    at oracle.jdbc.driver.OracleDriver.connect(Compiled Code)
    at java.sql.DriverManager.getConnection(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext.ConnectionPool.<init>(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext._ConnMgrBaseImpl.getConnectionPool(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext.ConnectionManager.getConnectionPool(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext.SMDataSource.getConnection(Compiled Code)
    at com.ibm.ejs.sm.util.db.DBMgr.initialize(Compiled Code)
    at com.ibm.ejs.sm.server.AdminServer.startConnectionMgr(Compiled Code)
    at com.ibm.ejs.sm.server.AdminServer.initializeRuntime(Compiled Code)
    at com.ibm.ejs.sm.server.AdminServer.main(Compiled Code)
    java.lang.Throwable
    at java.lang.Throwable.<init>(Compiled Code)
    at com.ibm.ejs.ras.CBuffLogger.fatalEvent(Compiled Code)
    at com.ibm.ejs.ras.Tr.fireTraceEvent(Compiled Code)
    at com.ibm.ejs.ras.Tr.fatal(Compiled Code)
    at com.ibm.ejs.sm.util.db.DBMgr.initialize(Compiled Code)
    at com.ibm.ejs.sm.server.AdminServer.startConnectionMgr(Compiled Code)
    at com.ibm.ejs.sm.server.AdminServer.initializeRuntime(Compiled Code)
    at com.ibm.ejs.sm.server.AdminServer.main(Compiled Code)
    Please help
    Thanks in Advance
    null

    When we install IBM Websphere Advanced Edition 3.o for Solaris and try connecting to the Oracle 81 database some errors were faced as below
    003.820 1ef19816 ConnectionPoo W Failure while creating connection java.sql.SQLException: Io exception: Connection refused(DESCRIPTION=(TMP=)(VSNNUM=135290880)(ERR=12505)(ERROR_STACK=(ERROR=(CODE=12505)(EMFI=4))))
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled Code)
    at java.sql.SQLException.<init>(Compiled Code)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(Compiled Code)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(Compiled Code)
    at oracle.jdbc.driver.OracleConnection.<init>(Compiled Code)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(Compiled Code)
    at oracle.jdbc.driver.OracleDriver.connect(Compiled Code)
    at java.sql.DriverManager.getConnection(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext.ConnectionPool.<init>(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext._ConnMgrBaseImpl.getConnectionPool(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext.ConnectionManager.getConnectionPool(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext.SMDataSource.getConnection(Compiled Code)
    at com.ibm.ejs.ns.CosNaming.CreateNsTables.dbInit(Compiled Code)
    at com.ibm.ejs.ns.CosNaming.NameServer.init(Compiled Code)
    at com.ibm.ejs.sm.server.ManagedServer.initializeNameService(Compiled Code)
    at com.ibm.ejs.sm.server.ManagedServer.initializeRuntime(Compiled Code)
    at com.ibm.ejs.sm.server.AdminServer.initializeRuntime(Compiled Code)
    at com.ibm.ejs.sm.server.AdminServer.main(Compiled Code)
    003.856 1ef19816 CreateNsTable W Failed to get a connection java.sql.SQLException: Io exception: Connection refused(DESCRIPTION=(TMP=)(VSNNUM=135290880)(ERR=12505)(ERROR_STACK=(ERROR=(CODE=12505)(EMFI=4))))
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled Code)
    at java.sql.SQLException.<init>(Compiled Code)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(Compiled Code)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(Compiled Code)
    at oracle.jdbc.driver.OracleConnection.<init>(Compiled Code)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(Compiled Code)
    at oracle.jdbc.driver.OracleDriver.connect(Compiled Code)
    at java.sql.DriverManager.getConnection(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext.ConnectionPool.<init>(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext._ConnMgrBaseImpl.getConnectionPool(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext.ConnectionManager.getConnectionPool(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext.SMDataSource.getConnection(Compiled Code)
    at com.ibm.ejs.ns.CosNaming.CreateNsTables.dbInit(Compiled Code)
    at com.ibm.ejs.ns.CosNaming.NameServer.init(Compiled Code)
    at com.ibm.ejs.sm.server.ManagedServer.initializeNameService(Compiled Code)
    at com.ibm.ejs.sm.server.ManagedServer.initializeRuntime(Compiled Code)
    at com.ibm.ejs.sm.server.AdminServer.initializeRuntime(Compiled Code)
    at com.ibm.ejs.sm.server.AdminServer.main(Compiled Code)
    004.208 1ef19816 AdminServer A Initializing WebSphere Administration server
    004.228 1ef1ff18 DrAdminServer A DrAdmin available on port 36,133
    004.248 1ef19816 ConnectionPoo W Failure while creating connection java.sql.SQLException: Io exception: Connection refused(DESCRIPTION=(TMP=)(VSNNUM=135290880)(ERR=12505)(ERROR_STACK=(ERROR=(CODE=12505)(EMFI=4))))
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled Code)
    at java.sql.SQLException.<init>(Compiled Code)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(Compiled Code)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(Compiled Code)
    at oracle.jdbc.driver.OracleConnection.<init>(Compiled Code)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(Compiled Code)
    at oracle.jdbc.driver.OracleDriver.connect(Compiled Code)
    at java.sql.DriverManager.getConnection(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext.Connect ionPool.<init>(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext._ConnMgrBaseImpl.getConnectionPool(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext.ConnectionManager.getConnectionPool(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext.SMDataSource.getConnection(Compiled Code)
    at com.ibm.ejs.sm.util.db.DBMgr.initialize(Compiled Code)
    at com.ibm.ejs.sm.server.AdminServer.startConnectionMgr(Compiled Code)
    at com.ibm.ejs.sm.server.AdminServer.initializeRuntime(Compiled Code)
    at com.ibm.ejs.sm.server.AdminServer.main(Compiled Code)
    004.263 1ef19816 DBMgr F Failed to create a data source: java.sql.SQLException: Io exception: Connection refused(DESCRIPTION=(TMP=)(VSNNUM=135290880)(ERR=12505)(ERROR_STACK=(ERROR=(CODE=12505)(EMFI=4))))
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled Code)
    at java.sql.SQLException.<init>(Compiled Code)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(Compiled Code)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(Compiled Code)
    at oracle.jdbc.driver.OracleConnection.<init>(Compiled Code)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(Compiled Code)
    at oracle.jdbc.driver.OracleDriver.connect(Compiled Code)
    at java.sql.DriverManager.getConnection(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext.ConnectionPool.<init>(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext._ConnMgrBaseImpl.getConnectionPool(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext.ConnectionManager.getConnectionPool(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext.SMDataSource.getConnection(Compiled Code)
    at com.ibm.ejs.sm.util.db.DBMgr.initialize(Compiled Code)
    at com.ibm.ejs.sm.server.AdminServer.startConnectionMgr(Compiled Code)
    at com.ibm.ejs.sm.server.AdminServer.initializeRuntime(Compiled Code)
    at com.ibm.ejs.sm.server.AdminServer.main(Compiled Code)
    FATAL Failed to create a data source: {0} java.sql.SQLException: Io exception: Connection refused(DESCRIPTION=(TMP=)(VSNNUM=135290880)(ERR=12505)(ERROR_STACK=(ERROR=(CODE=12505)(EMFI=4))))
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled Code)
    at java.sql.SQLException.<init>(Compiled Code)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(Compiled Code)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(Compiled Code)
    at oracle.jdbc.driver.OracleConnection.<init>(Compiled Code)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(Compiled Code)
    at oracle.jdbc.driver.OracleDriver.connect(Compiled Code)
    at java.sql.DriverManager.getConnection(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext.ConnectionPool.<init>(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext._ConnMgrBaseImpl.getConnectionPool(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext.ConnectionManager.getConnectionPool(Compiled Code)
    at com.ibm.ejs.dbm.jdbcext.SMDataSource.getConnection(Compiled Code)
    at com.ibm.ejs.sm.util.db.DBMgr.initialize(Compiled Code)
    at com.ibm.ejs.sm.server.AdminServer.startConnectionMgr(Compiled Code)
    at com.ibm.ejs.sm.server.AdminServer.initializeRuntime(Compiled Code)
    at com.ibm.ejs.sm.server.AdminServer.main(Compiled Code)
    java.lang.Throwable
    at java.lang.Throwable.<init>(Compiled Code)
    at com.ibm.ejs.ras.CBuffLogger.fatalEvent(Compiled Code)
    at com.ibm.ejs.ras.Tr.fireTraceEvent(Compiled Code)
    at com.ibm.ejs.ras.Tr.fatal(Compiled Code)
    at com.ibm.ejs.sm.util.db.DBMgr.initialize(Compiled Code)
    at com.ibm.ejs.sm.server.AdminServer.startConnectionMgr(Compiled Code)
    at com.ibm.ejs.sm.server.AdminServer.initializeRuntime(Compiled Code)
    at com.ibm.ejs.sm.server.AdminServer.main(Compiled Code)
    Please help
    Thanks in Advance
    null

  • Creating a database on Personal Oracle 9i on Windows 2000

    Hi,
    Well, I cannot create database on Personal Oracle 9i on Windows 2000 via Database Configuration Assistant. Same problem occurs during installation. Here is the message:
    CreateProcess: null -new -sid DES -startmode m error=2
    Does anyone know anything about it?
    Please reply...
    Thank you...

    Apply the lastest patch to the OS and try.
    Joel Perez

Maybe you are looking for

  • Trouble with Photoshop Elements 6.0

    I bought several years ago the Photoshop Elements 6.0 I´m having some problems with it. I cant see the images on the screen, I only see sand clocks and it is "generating thumbnails" all the time. Im looking for an update for this Photoshop. How do I

  • How do I split a pdf file when the file size is too large?

    How do I split a pdf file when the file size is too large?  Thanks!

  • Outlook Sync won't close in iTunes 8.1

    I've found 8.1 to be a huge improvement as 7 used to regularly cause my computer to freeze up entirely. But I am having difficulty with the sync. The sync itself works fine, but after syncing is complete and I close iTunes/unplug iPhone, the Outlook

  • Display Question

    OK, just got my new iPhone and have joined the community. But here's my question: Supposedly when I tilt the phone from vertical to horizontal, the display should rotate as well - right? Sometimes it does, sometimes it doesn't. Always rotates correct

  • URGENT,FRM-41337: Cannot populat the list from record group

    Hi all: Can anyone help me in that problem? I have a database item in the block as a list item with combo box style and I use this code in WHEN-NEW-RECORD-INSTANCE at the form module level to populate that combo box list: DECLARE      group_id RECORD