DBUA - Utility - Database is Down, but really running???

Cannot get past the Database selection screen because it reports that our databases our down. I think there is a problem with the Connect string, it shouldn't use a normal connect string

now it is working..
Yesterday i was tried few options which was in forum' replies. One of that is dbsnmp password change. i changed to some password yesterday. now i cleaned up the space issues and etc but got metric collection error. then i went metric error collection link and found username/password invalid.. then i realised and changed to actual on which i have given during installation.. now it is showing correct status..
Thanks.
Regards
Kannan.S

Similar Messages

  • Is there a way to back up my imac computer that isn't fully functional? I can get into safe mode but its running really really slow.

    Is there a way to back up my imac computer that isn't fully functional? I can get into safe mode but its running really really slow. I recently upgraded to Yosemite when shortly it slowed down.

    Read the comments in this thread--> https://discussions.apple.com/thread/6411339

  • How to detect if  Database is down when client application is running?

    Hi,
    I have a oracle Forms application accessing a remote database. While doing processing, application has to post some data in a remote database.
    As of now, when the Forms client is running and remote database is down, the client hangs.
    I have tried Creating a timer before remote database procedure call in the FORMS Trigger and checking in the when_timer_expired trigger, if a specific duration has passed or not. This doesn't work as timer fires only after the remote procedure call completes and other SQL statements in the FORMS trigger where i have created the timer completes.
    I Know sqlcode -3113 can be of help.
    Hope someone can help me with a solution/suggestion.
    Thanks
    Hari

    interesting situation.
    what about issuing the select count(*) into cnt from dual, if cnt>0 then do post.
    better to setup the remote database has fail-over to another node.

  • Hard drive is missing. I can boot from the cd but when running the disk utility, no hard drive shows up.

    Hard drive is missing. I can boot from the cd but when running the disk utility, no hard drive shows up.
    This is a problem that suddenly appeared.

    Please post a screenshot of Disk Utility that shows what you mean. Be careful not to include any private information.
    Start a reply to this message. Click the camera icon in the toolbar of the editing window and select the image file to upload it. You can also include text in the reply.

  • I was running Foxfire 3.6.9 and wanted to use FTP Program add-on and it did not appear to load but appeared but then would be installed but not run or appear under tools. So I deleted Foxfire 3.6.9 and down loaded to 3.5.9 so it could get FTP and it is do

    I was running Foxfire 3.6.9 and wanted to use FTP Program add-on and it did not appear to load but appeared but then would be installed but not run or appear under tools. So I deleted Foxfire 3.6.9 and down loaded to 3.5.9 so it could get FTP and it is doing the same could not install. Even after I registered my copy. The last time I used this program it showed up under tools and worked great. any suggestions on whats going on and how I can get around this?.by ralphd3g

    Delete the files extensions.* (extensions.rdf, extensions.cache, extensions.ini) and compatibility.ini in the Firefox [[Profiles|profile folder]] to reset the extensions registry.
    See "Corrupt extension files": http://kb.mozillazine.org/Unable_to_install_themes_or_extensions
    If you see disabled extensions that are not compatible on the next start in "Tools > Add-ons > Extensions" then click the "Find Updates" button to do a compatibility check.

  • G5 shuts down but runs all day long in Target mode

    I have been having a problem with my G5 shutting down just after the star window. However in target mode the G5 runs all day and I can back up all my files. I even tried to install new system software, but it would shut down before it would finish.
    What's causing this to shut down during start up... but keep running in Target mode? Bad memory? Bad card? etc.
    Vic

    I would run your Apple Hardware Test and see if it flags anything!
    Cheers!
    DALE

  • Listener shows as Down but is actually running

    In 4.0.8.2 Oracle Application Server Manager Enterprise Edition, HTTP Listeners, for the "www", the listener shows as down but is actually running. If I try to stop it, it says it is not running (the IE dialog box pops-up). If I try to start it, it says (in a new small browser window) "OWS-08806: Oracle Web Listener 'www' is already UP and running at pid 0." Since my site is up, I know it is running. However, how can I bring it down?
    null

    Does Oracle moderate these posts at all? Will I only get a reply if I say NT is king, and Apache kicks butt?

  • One of the database is down in streaming environment

    I have scenario where one of the database in (two different database) streaming environment is unavailable due to nework/link/database maintenance purpose. Since my other database is up and running and DML/DDL operations are in process how can I avoid following error
    SQL> insert into test values ('eee', 'code e');
    1 row created.
    SQL> commit;
    commit
    ERROR at line 1:
    ORA-02050: transaction 5.23.8870 rolled back, some remote DBs may be in-doubt
    ORA-02068: following severe error from OTHER_DOWN_DATABASE
    ORA-03113: end-of-file on communication channel
    ============================================
    Can I change some parameters in DBMS_STREAMS_ADM Package or any other packages to avoid above situation

    Thanks for the reply.
    I am getting the same error even If I just do select on the table which I have for streaming
    SQL> select * from test@dbtest;
    select * from test@dbtest
    ERROR at line 1:
    ORA-02068: following severe error from DBTEST ---destination database
    ORA-03113: end-of-file on communication channel.
    Q- Wich database is down? Is it the source database or the destination database?
    For now I am testing with keeping down destination database.
    Q- If it's the source db, just stop the capture. That's all you really have to do.
    A- This can be good for planned maintenance, but how about unplanned outage or sudden problem (with networks/links or all of a sudden I can not stream my data changes to destination database).
    Q--The error you're describing is unclear.... Do you get that error immediately when you issue the insert and the commit? That sound very very strange to me because streams does asynchronous replication... You would not get such an error for db down from my opinion.
    A-- First time, I got this error when I updated a row and then tried to commit while my destination database was down.
    Q- It looks like the problem has nothing to do with streams but rather a distributed transaction problem (2pc)...
    A- If it is transaction problem should I be getting similar error while selecting from destination table, see the above error

  • Script for getting mail if database is down

    Hi Friends,
    OS Version : IBM AIX 5,2
    Oracle version : 9.2.0.7
    I am executing the following script for getting mail alert if database is down. some how the script is not working
    check_stat=`ps -ef|grep ${ORACLE_SID}|grep pmon|wc -l`;
    oracle_num=`expr $check_stat`
    if [ $oracle_num -lt 1 ]
    then
    exit 0
    fi
    # Test to see if Oracle is accepting connections
    $ORACLE_HOME/bin/sqlplus -s "/as sysdba" > /tmp/check_$ORACLE_SID.ora
    select name from v$database;
    exit
    # If not, exit and e-mail . . .
    check_stat=`cat /tmp/check_$ORACLE_SID.ora|grep -i error|wc -l`;
    oracle_num=`expr $check_stat`
    if [ $oracle_num -ne 0 ]
    then
    mailx -s "$ORACLE_SID is down!" [email protected] < /tmp/check_$ORACLE_SID.ora
    exit 16
    fi
    I am saving this as .sh file and executing at command prompt. It is just hanging, but not throwing any error.
    I would like to know if there is anything to be modified in the script or please provide me any such script. Thanks in advance

    HI there.
    I have a script I use that works really well. It sends out an email only if the database is down and also reads an ini file to process a blackout period and a priority level of the database... High priority databases are monitored every 5 minutes and Medium priority databases every hour.
    There are two scripts, the shell script and the .ini file and I have two cron entries...
    Check script:_
    #!/bin/ksh
    # check_oracle_status.sh
    # Script to check if Oracle db's are up and running.
    # Script is passed a priority field and reads check_oracle_status.ini
    # to determine which db's to check. If db is down an email is sent.
    # Priority Levels:
    # H - Checks db's with "H"igh Priority every 5 minutes (cron)
    # M - Checks db's with "M"edium Priority every hour (cron)
    # L - db's with "L"ow Priority currently not checked
    # Script Change History:
    # ======================
    # October 29th, 2009 - Initial Creation
    # Set environment
    export SCRIPTHOME=/opt/oracle/admin/scripts
    export INIFILE=$SCRIPTHOME/check_oracle_status.ini
    export PRIORITY=$1
    . $HOME/.profile
    db=`grep -i ":$PRIORITY" $INIFILE | cut -d":" -f1`
    check_database()
    sqlplus <<! > $SCRIPTHOME/check.out
    / as sysdba
    select * from dba_data_files;
    exit
    grep ORA- $SCRIPTHOME/check.out > $SCRIPTHOME/error.out
    if (( $? )); then
    echo ""
    else
    mailx -s "Oracle instance $i is currently UNAVAILABLE" +<email address>+ < $SCRIPTHOME/error.out
    fi
    for i in $db ; do
    fields=`grep $i $INIFILE | awk -F':' '{ total = total + NF }; END {print total}'`
    export ORACLE_SID=$i
    if [ $fields -gt 2 ]; then
    BLACKOUT_START=`grep -i "$ORACLE_SID" $INIFILE | cut -d":" -f3`
    BLACKOUT_END=`grep -i "$ORACLE_SID" $INIFILE | cut -d":" -f4`
    CURRENT_HOUR=`date +%H`
    CHECK_BASE=YES
    if [ $BLACKOUT_START -gt $BLACKOUT_END ]; then
    (( $CURRENT_HOUR >= $BLACKOUT_START || $CURRENT_HOUR <= $BLACKOUT_END )) && CHECK_BASE=
    else
    (( $CURRENT_HOUR >= $BLACKOUT_START && $CURRENT_HOUR <= $BLACKOUT_END )) && CHECK_BASE=
    fi
    if [ -n "$CHECK_BASE" ]; then
    check_database
    fi
    else
    check_database
    fi
    done
    rm $SCRIPTHOME/check.out $SCRIPTHOME/error.out
    INI File:_
    oracle1:L
    oracle2:M:17:08
    oracle3:M
    oracle5:M:17:08
    oracle6:H
    oracle7:M:17:08
    oracle8:M
    oracle9:M
    Where oracle1,2,3 etc is your sid
    L M and H your priority level
    17 is blackout start (5 PM)
    08 is blackout end (8 AM)
    Note: Blackout is just a start hour and an end hour and must contain both or none and my script can only process one blackout per database. I guess if you
    needed a second blackout you could add another line with different times for that sid
    Cron entries:_
    # Check Oracle Status
    # The check_oracle_status.sh script monitors "H"igh priority databases every 5 minutes
    # and "M"edium priority databases every hour
    0,5,10,15,20,25,30,35,40,45,50,55 * * * * /opt/oracle/admin/scripts/check_oracle_status.sh H > /dev/null 2>&1
    0 * * * * /opt/oracle/admin/scripts/check_oracle_status.sh M > /dev/null 2>&1
    Not sure if you require blackouts or priority levels but this setup works great at our site.
    Hope this helps.

  • At DI R3trans fails with this error code ORA-12545, but CI runs

    Hello Gurus,
    We have our BW System on two instances with a separated oracle database server.
    Last week the system was unreachable and we must restarted it hard.
    After that, the Listener could  started and runs. The DB could started, mounted and opened successfully.
    Now we have a special problem.
    The central instance can connect at startup to the database. But the dialog instance not.
    The DI get the following error:
    |> R3trans -x
    This is R3trans version 6.14 (release 701 - 12.06.09 - 15:20:00).
    2EETW169 no connect possible: "DBMS = ORACLE                           --- dbs_ora_tnsname = 'BW2'"
    R3trans finished (0012).
    The trans.log entry are:
    4 ETW000  [dbsloci.    ,00000]  *** ERROR => CONNECT failed with sql error '12541'                        17  0.187511
    4 ETW000  [dev trc     ,00000]     set_ocica() -> SQL error code 12541                                    13  0.187524
    4 ETW000  [dev trc     ,00000]  -->oci_get_errmsg (con_hdl=0, rc=12541)                                   14  0.187538
    4 ETW000  [dev trc     ,00000]     OCIErrorGet -> SQL error code: 12541                                   14  0.187552
    4 ETW000  [dev trc     ,00000]     ORA-12541: TNS:no listener                                      
    4 ETW000                                                                                22  0.187574
    4 ETW000  [dblink      ,00433]  ***LOG BY2=>sql error 12541  performing CON [dblink#4 @ 433]           14396  0.201970
    4 ETW000  [dblink      ,00433]  ***LOG BY0=>ORA-12541: TNS:no listener [dblink#4 @ 433]                   39  0.202009
    2EETW169 no connect possible: "DBMS = ORACLE                           --- dbs_ora_tnsname = 'BW2'"
    A telnet connection test to port 1527 are also unsuccessful.
    But sporadicly the telnet or R3trans connection are successful, but the second check are unsuccessful.
    We have checked the telnet connection to another oracle database server (ERP) at port 1527 and it works.
    The CI have some entry's in ST22 with DBIF_RSQL_SQL_ERROR --> ORA-03114: not connected to ORACLE.
    Are someone known something about this issue?
    regards
    Chris

    @ Sunny Pahuja:
    We checked sapmnt.
    Sapmnt is common on CI and DI. It was never mounted on DB. But DB runs perfectly until this issue.
    @ Ankit Gupta
    We checked the configuration of listener.
    It is the same like the listener configuration of our ERP system with CI, DI and DB on separate Servers, too.
    @  Rajesh Narkhede
    From DB Server
    |> tnsping BW2
    TNS Ping Utility for IBM/AIX RISC System/6000: Version 10.2.0.2.0 - Production on 06-MAY-2010 07:40:56
    Copyright (c) 1997, 2005, Oracle.  All rights reserved.
    Used parameter files:
    /oracle/BW2/102_64/network/admin/sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (COMMUNITY = SAP.WORLD) (PROTOCOL = TCP)
    (HOST = bw2dba) (PORT = 1527))) (CONNECT_DATA = (SID = BW2) (GLOBAL_NAME = BW2.WORLD)))
    OK (100 msec)
    On CI and DI we don't have tnsping.
    Just copy it don't work.
    |> tnsping BW2
    TNS Ping Utility for IBM/AIX RISC System/6000: Version 10.2.0.2.0 - Production on 06-MAY-2010 08:39:17
    Copyright (c) 1997, 2005, Oracle.  All rights reserved.
    Message 3511 not found; No message file for product=network, facility=TNS
    Message 3512 not found; No message file for product=network, facility=TNS
    Attempting to contact (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (COMMUNITY = SAP.WORLD) (PROTOCOL = TCP)
    (HOST = bw2dba) (PORT = 1527))) (CONNECT_DATA = (SID = BW2) (GLOBAL_NAME = BW2.WORLD)))
    Message 3509 not found; No message file for product=network, facility=TNS
    How to get it on the CI and DI. In the SAR files at SAP it is not included. I can't found something in the Web.

  • How to create  a procedure to send a mail if the Database is down?

    Hi,
    I have created the below procedure to send a mail if the count is less than 1300. It scheduled daily @ 15 30 hrs. Its fine.
    CREATE OR REPLACE procedure SCOTT.hrsmail
    is
    v_count number;
    begin
    Select count(*) into v_count from emp;
    if v_count < 1300
    then
    UTL_MAIL.send(sender => '[email protected]',
    recipients => '[email protected]',
    cc => '[email protected]',
    bcc => '[email protected]',
    subject => 'Testing the UTL_MAIL Package',
    message => 'If you get this, UTL_MAIL package
    else
    null; --what you want to do here
    end if ;
    end;
    Sometime the Database is down, so the job is not running.
    How to create a procedure to send a mail if the database is down?
    Pls help me. Its highly appreciated.
    Thanks
    Nihar

    nihar wrote:
    How to create a procedure to send a mail if the database is down?And what if the database is up, but the network down? Or the database up and mail server down? Or mail server undergoing maintenance?
    There are loads of "+What if's+" - and in that respect, playing "+What if database is down..+" in this case does not make any sense. You do not use the database to monitor its own up/down status. You do not rely just on SMTP as notification protocol that the database is down.
    The correct approach would be using something like SNMP as the monitoring protocol. A monitoring system that can process SNMP and perform some basic root cause analysis (e.g. network to the database server down, database server status unknown). And this system supporting notification methods like SMTP, SMS and so on.

  • Constant Error; Adobe Flash Player 11.4 r402 has stopped working. But NOT running Trusteer Rapport.

    I am experiancing this unbelieveably annoying and constant Flash error;  Adobe Flash Player 11.4 r402 has stopped working.
    But NOT running Trusteer Rapport, I never have, and it's not even installed on my computer.  So what's causing this?

    There were a couple AntiVirus/AntiMalware products that keep coming up, but I haven't validated that in the lab and don't want to call anyone out publicly without reporting the issue to them first.

If you could tell me what antivirus/antimalware products and versions you have installed, that would be helpful.
    So, third party stuff aside, I'd like to know more about the crashes your seeing:
    1.) Please provide links to the Firefox crash reports.  If you have multiples, the first few would be great.
         In Firefox, type about:crashes in the address bar
         If the link starts with "bp...", it's already been submitted -- just right-click on it and copy the link, and paste it into the reply here.
         If not, click it to submit it, and copy the subsequent link.
    2.) In firefox, type about:support
         Just copy and paste the output into the reply.
    3.) In Firefox, type about:plugins
         Please copy and paste the output into the reply
    4.) Please provide the output of the DirectX Diagnostic Utility
         Click Start > type "dxdiag" [enter]
         Click Save All Information
         Copy the output of the file into the reply, or use Adobe SendNow/DropBox/PasteBin to share the file.
    5.) If you can provide an exact URL and step-by-step instructions on repeating the crash (if it's consistent), that would be really helpful.  My goal is to build out a configuration that matches yours as closely as possible, reproduce the problem and then debug it.
    If you're not comfortable sharing that diagnostic information publicly, send me a private message.  Just click my name and use the options on the right.
    Thanks!

  • Am running Firefox 7.0.1 now. Normal memory usage is 157mb but when running Facebook (not running apps nor games), it goes up to 553mb Why?

    Am running Firefox 7.0.1 now. Normal memory usage is 157mb but when running Facebook (not running apps nor games), it goes up to 553mb Why?

    I encountered the same type of problem. Firefox running terribly slowly and slowing down my entire machine (Core i5 with 256GB SSD). Searching the forums, I found a couple of things about troubleshooting performance issues, one of which was to use '''hardware acceleration''', that is on by default. It was turned on on my PC, '''so I tried deactivating it, and it worked!'''
    So doing the exact opposite as Mozilla support said solved the problem. It is really a pain now to work with Firefox. I'm using it because I have no choice, but I'd recommend IE and Chrome over Firefox... Whatever, the market will decide once Firefox has become to crappy...

  • Database Configuraion Assistant doesn't run

    Please answer me to [email protected]
    I installed Oracle 9i Enterprise Edition Database on OpenUNIX 8 (SCO UnixWare 7.1.3 + Caldera OpenLinux 3.1.1 RPM). Net Assistant was completed automatically after the installation while the other tool (Database Configuration Assistant) didn't run correctly, so I had to complete the instalation without creating any database. Runing that tool after shows the same error messages as below :
    SIGSEGV 11* segmentation violation
    stackbase=0x450b8000, stackpointer=0x450b75b0
    and then te following as below
    Full thread dump:
    "KeywordDataSource Background Merge" (TID:0x411d80d0, sys_thread_t:0x4515ce0
    c, state:CW) prio=4
    java.lang.Object.wait(Object.java)
    oracle.ewt.timer.Timer._waitTilScheduled(Unknown Source)
    oracle.ewt.timer.Timer.run(Unknown Source)
    java.lang.Thread.run(Thread.java)
    "TaskScheduler timer" (TID:0x411c4138, sys_thread_t:0x4513be0c, state:CW) pr
    io=5
    java.lang.Object.wait(Object.java)
    oracle.ewt.timer.Timer._waitTilScheduled(Unknown Source)
    oracle.ewt.timer.Timer.run(Unknown Source)
    java.lang.Thread.run(Thread.java)
    "Thread-4" (TID:0x411b1478, sys_thread_t:0x4511ae0c, state:CW) prio=5
    oracle.sysman.assistants.util.SplashScreenWindow.run(SplashScreen.java)
    java.lang.Thread.run(Thread.java)
    "Screen Updater" (TID:0x411b15f0, sys_thread_t:0x450f9e0c, state:CW) prio=4
    java.lang.Object.wait(Object.java)
    sun.awt.ScreenUpdater.nextEntry(ScreenUpdater.java:70)
    sun.awt.ScreenUpdater.run(ScreenUpdater.java:90)
    "AWT-Finalizer" (TID:0x411c1918, sys_thread_t:0x450d8e0c, state:MW) prio=9
    sun.awt.image.ImageRepresentation.doFinalization(ImageRepresentation.jav
    a:455)
    sun.awt.AWTFinalizer.run(AWTFinalizer.java:47)
    "Image Fetcher 3" (TID:0x411b92f8, sys_thread_t:0x450b7e0c, state:R) prio=9
    current thread
    sun.awt.image.ImageRepresentation.setPixels(ImageRepresentation.java:176
    sun.awt.image.ImageDecoder.setPixels(ImageDecoder.java:115)
    sun.awt.image.GifImageDecoder.sendPixels(GifImageDecoder.java:447)
    sun.awt.image.GifImageDecoder.readImage(GifImageDecoder.java:558)
    sun.awt.image.GifImageDecoder.produceImage(GifImageDecoder.java:227)
    sun.awt.image.InputStreamImageSource.doFetch(InputStreamImageSource.java
    :257)
    sun.awt.image.ImageFetcher.fetchloop(ImageFetcher.java:143)
    sun.awt.image.ImageFetcher.run(ImageFetcher.java:119)
    "Image Fetcher 0" (TID:0x411b9810, sys_thread_t:0x45096e0c, state:CW) prio=8
    sun.awt.image.ImageFetcher.nextImage(ImageFetcher.java:101)
    sun.awt.image.ImageFetcher.fetchloop(ImageFetcher.java:138)
    sun.awt.image.ImageFetcher.run(ImageFetcher.java:119)
    "AWT-Motif" (TID:0x411c10e0, sys_thread_t:0x45075e0c, state:CW) prio=5
    java.lang.Thread.run(Thread.java)
    "AWT-Input" (TID:0x411c1100, sys_thread_t:0x44583e0c, state:R) prio=5
    "AWT-EventQueue-0" (TID:0x411c1118, sys_thread_t:0x44562e0c, state:CW) prio=
    5
    java.lang.Object.wait(Object.java)
    java.awt.EventQueue.getNextEvent(EventQueue.java:126)
    java.awt.EventDispatchThread.run(EventDispatchThread.java:70)
    "process reaper" (TID:0x411bd468, sys_thread_t:0x44541e0c, state:CW) prio=5
    java.lang.Thread.run(Thread.java)
    "Finalizer thread" (TID:0x411a0210, sys_thread_t:0x444c1e0c, state:CW) prio=
    1
    "Async Garbage Collector" (TID:0x411a0258, sys_thread_t:0x444a0e0c, state:CW
    ) prio=1
    "Idle thread" (TID:0x411a02a0, sys_thread_t:0x4447fe0c, state:R) prio=0
    "Clock" (TID:0x411a0088, sys_thread_t:0x4445ee0c, state:CW) prio=12
    "main" (TID:0x411a00b0, sys_thread_t:0x81e2ec0, state:CW) prio=5
    java.lang.Object.wait(Object.java)
    oracle.ewt.graphics.ImageLoader.waitFor(Unknown Source)
    oracle.ewt.graphics.ImageUtils.loadImage(Unknown Source)
    oracle.ewt.graphics.ImageUtils._getImageResource(Unknown Source)
    oracle.ewt.graphics.ImageUtils.getImageResource(Unknown Source)
    oracle.sysman.assistants.dbca.ui.WelcomePage.<init>(WelcomePage.java)
    oracle.sysman.assistants.dbca.ui.DBCAWizard.getPageAt(DBCAWizard.java)
    oracle.sysman.assistants.util.wizard.WizardExt.addPages(WizardExt.java)
    oracle.sysman.assistants.util.wizard.WizardObject.addPages(WizardObject.
    java)
    oracle.sysman.assistants.dbca.ui.DBCAWizard.addPages(DBCAWizard.java)
    oracle.sysman.assistants.util.wizard.WizardObject.launch(WizardObject.ja
    va)
    oracle.sysman.assistants.dbca.ui.UIHost.performOperation(UIHost.java)
    oracle.sysman.assistants.dbca.backend.Host.startOperation(Host.java)
    oracle.sysman.assistants.dbca.Dbca.execute(Dbca.java)
    oracle.sysman.assistants.dbca.Dbca.main(Dbca.java)
    Monitor Cache Dump:
    oracle.ewt.timer.Timer@1092370816/1093138304: <unowned>
    Waiting to be notified:
    "TaskScheduler timer" (0x4513be0c)
    sun.awt.motif.MToolkit@1092358560/1093011760: owner "Image Fetcher 3" (0x450
    b7e0c, 1 entry)
    Waiting to enter:
    "AWT-Finalizer" (0x450d8e0c)
    Waiting to be notified:
    "AWT-Motif" (0x45075e0c)
    <unknown key> (0x0x4511ae0c): <unowned>
    Waiting to be notified:
    "Thread-4" (0x4511ae0c)
    oracle.sysman.assistants.dbca.ui.DBCAWizard@1092354968/1093001008: owner "ma
    in" (0x81e2ec0, 1 entry)
    oracle.sysman.assistants.util.wizard.WizardExt@1092365232/1093030256: owner
    "main" (0x81e2ec0, 1 entry)
    java.awt.EventQueue@1092358504/1093012024: <unowned>
    Waiting to be notified:
    "AWT-EventQueue-0" (0x44562e0c)
    sun.awt.image.ImageRepresentation@1092464464/1093651080: owner "Image Fetche
    r 3" (0x450b7e0c, 1 entry)
    oracle.ewt.graphics.ImageLoader@1092464472/1093651152: <unowned>
    Waiting to be notified:
    "main" (0x81e2ec0)
    sun.awt.ScreenUpdater@1092294128/1093093832: <unowned>
    Waiting to be notified:
    "Screen Updater" (0x450f9e0c)
    oracle.ewt.timer.Timer@1092452616/1094222688: <unowned>
    Waiting to be notified:
    "KeywordDataSource Background Merge" (0x4515ce0c)
    java.util.Vector@1092327416/1092940056: <unowned>
    Waiting to be notified:
    "Image Fetcher 0" (0x45096e0c)
    <unknown key> (0x0x444a0e0c): <unowned>
    Waiting to be notified:
    "Async Garbage Collector" (0x444a0e0c)
    Registered Monitor Dump:
    Fork_Wait_monitor: <unowned>
    Waiting to be notified:
    "process reaper" (0x44541e0c)
    Thread queue lock: <unowned>
    Name and type hash table lock: <unowned>
    String intern lock: <unowned>
    JNI pinning lock: <unowned>
    JNI global reference lock: <unowned>
    BinClass lock: <unowned>
    Class loading lock: <unowned>
    Java stack lock: <unowned>
    Code rewrite lock: <unowned>
    Heap lock: <unowned>
    Has finalization queue lock: <unowned>
    Finalize me queue lock: <unowned>
    Waiting to be notified:
    "Finalizer thread" (0x444c1e0c)
    Dynamic loading lock: <unowned>
    Monitor IO lock: <unowned>
    Child death monitor: <unowned>
    Event monitor: <unowned>
    I/O monitor: owner "AWT-Input" (0x44583e0c, 1 entry)
    Alarm monitor: <unowned>
    Waiting to be notified:
    "Clock" (0x4445ee0c)
    Monitor registry: owner "Image Fetcher 3" (0x450b7e0c, 1 entry)
    Thread Alarm Q:
    sys_thread_t 0x44583e0c [Timeout expired]
    sys_thread_t 0x4511ae0c [Timeout in 94 ms]
    sys_thread_t 0x444a0e0c [Timeout in 345 ms]
    sys_thread_t 0x45096e0c [Timeout in 4983 ms]
    ../dbca: line 129: 13423 Aborted $JRE_DIR/bin/jre -DORACLE_HOME=$
    ORACLE_HOME -DJDBC_PROTOCOL=thin -mx64m -classpath $CLASSPATH oracle.sysman.assi
    stants.dbca.Dbca $ARGUMENTS
    If anyone has any idea what's going on please me to the email adress shown at the top.

    A.T., I seem to remember it took me hours to download PRE7 4 or 5 years ago.
    I'm adding the latest step in this saga in case it helps someone else, as I had not found the following in any of the threads I searched through.
    My chat got closed while I was downloading and I got sent an email with details of the case number and a link to the Customer Support Portal online so I can update the case to let them know once everything is downloaded and working (fingers crossed).
    When I clicked on the link in the email, I went to a screen with the case link to use to update later. 
    BUT in the menu bar at the top of the page there is a link to Order History, which then took me to details of my orders, which I had not been able to get to by just using My Orders.  Beside my current order is a button to press to view the order details, so I did and got taken to a copy of the order details, which included a link to Downloads Available.  When I clicked on that, what do you know - I am in the Adobe store with all my Akamai download links for both lots of software and the installer for both 32 and 64-bit operating systems.
    How do you find the Customer Support Portal?? I searched Customer Support Portal on the Adobe home page and found this link to use
    http://helpx.adobe.com/x-productkb/policy-pricing/customer-support-portal.html
    It looks like you select your location then log in and you should get to your Customer Support Portal, with links to open and closed cases, as well as your order history and returns history.
    Hope that helps someone in the same boat in the future.

  • Adstrtal.sh: Database connection could not be established. Either the database is down or the APPS credentials supplied are wrong.

    In our R12.1.3 EBS, on RHEL 5.5, 64-bit, we are getting this error -
    adstrtal.sh: Database connection could not be established. Either the database is down or the APPS credentials supplied are wrong.
    However, neither the db is down nor the APPS password is wrong. I am able to connect from sqlplus from application tier. And also from the 10.1.3 home. I have checked similar threads here but none helped. Raised an SR yesterday but that too hasn't helped yet.
    Any ideas?
    Regards,
    Vinod

    please post he output of
    SQL> show parameter sec_case_sensitive_logon
    $ECHO TWO_TASK
    clean FND NODES
    How to Clean Nonexistent Nodes or IP Addresses From FND_NODES [ID 260887.1]
    Check if all services are down on application node, no process should be running.
    shut down db listener and database
    reboot the server
    start or reload listener on DB node and start the database
    Run autoconfig on db tier -- make sure it completes successfully.
    Run autoconfig on all apps tier -- make sure it completes successfully.
    Now, try to start applications on middle tier.
    ApPsMaStI
    sharing is Caring

Maybe you are looking for

  • Make firefox use Java 5

    My computer uses windows 98se and the latest version of Java that will work on this machine is 5 22. I can not update to a higher Firefox or Java or OS. How can I make my fire fox 3 6 28 work with java 5. It always says that my plug in is blocked and

  • Disabling regions in the APEX interface

    Using APEX 2.2.1 we would like to create a reporting system where we (IT) create the views and users can create the report pages (selecting the columns and where clause). 1. Is there a way to hide/disable the regions in the APEX interface (for users

  • Genuine Software Verification Failure for Captivate 8

    Hello, I am curious about an error that keeps on occurring with the trial download of Captivate 8. I am working on a Company Machine, a Dell Precision Tower 7910, and I need to download a trial of Adobe Captivate 8. Upon the install it reaches 99% an

  • After 10.9.2 update safari freezes

    After the 10.9.2 update the week of April 21, Safari freezes up. I can still move the pointer but nothing else. I cannot force quit or open any other apps.  I shut down the machine and when I reboot I get the gray screen.  I did a safe boot, restarte

  • Remotly acess of SQL loader

    We have two oracle servers. Server A. Server B. And end user machine.on this machine we only has net service with server A. We select and insert our data from server B using Db link. Now on end user machine as I mention we don't have connection servi