Diagnosing a "hang" in an Iterator

I have code that takes a list of ID numbers in an ArrayList The size of he ArrayList is 126. IN my code, I create an iterator on the list. For each id, I do a fetch from the database. After I get to 28 ids,the program simply stops. No error, no Exception. It just stops . I wanted to run JConsole but the box is not configured for that (or any X11-type stuff). I want to know what's goig on, like lowmemory. I have guessed it was memory and addd a <maxmemory="512m"/> to the java task of my ant script, but that seemed to amke no difference. How can I diagnose what's wrong? I use iterators all th time and never hit a situation like this. Here's the relevant code snippet:
Iterator idIter = studentIDs.iterator();
while(idIter.hasNext())
studentID = (String)idIter.next();
edu.apu.directory.APUPerson student = getStudent(studentID);
writePersonHeader(student);
counter++;
System.out.println("counter:"+counter);
studentIDs.size() just before this loop equals 126. When I run this, coutner never gets past 28. NO error. It just stops. Any suggestions? Thanks.

This code isn't complete. The hang isn't likely to be in the iterator. It's in the getStudent() method, I'll bet. Could an exception be thrown and you haven't really handled it? Look for an empty catch block somewhere that's swallowing an exception without telling you.
Thanks but that's not the case. The getStudent method uses a DAO that has been running in production for months and works just fine. There are no empty catch blocks:
private edu.apu.directory.APUPerson getStudent(String studentID)
try
student = (edu.apu.directory.APUPerson)personDAO.findAPUPerson(studentID);
catch (PersonNotFoundException e)
System.out.println("error getting student:"+ e.getMessage());
e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates.
catch (LookupFailedException e)
System.out.println("error getting student:"+ e.getMessage());
e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates.
return student;
What is of great interest is that if I copy the call to getStudent() out of the Iterator loop and hardcode an id in it, then the number of elements in the ArrayList that the Iterator woudl process went down by one, as though the application simply will not process over 28 calls to the DAO. I don't get any exceptions, and I never code empty catch blocks (bad programming practice, which can cause trouble, as you note).
I'd move that database code into a separate object and test it out separate from the rest of your code. It's called a DAO object. It ought to have a signature like this:
Good idea. Done long ago.
(I don't know what your edu.apu.directory.APUPerson class is. Perhaps that is your "Student".) Yes, it models a student.
If I were running this app, I'd get into a debugger and step through the code until I figured out exactly where the error was occurring. Shouldn't be too hard to do.
I"ll see if I can get that to work, but I'm dubious of it working 28 times and tehen telling me what's wrong the 29th, if it's not a Java error. Thanks.

Similar Messages

  • Oem diagnosis pack hangs - solution needed

    Hi friends,
    I have my database in Oracle 9i version 1.0.0.0. and initially my Oracle Enterprise Manager diagnosis pack worked well. But after some days it started hanging. I have updated JRE 7.0. Though other things in OEM works nothing from the diagnosis pack.
    Is there any solution? Or what i have to do to get OEM working without application getting hanged.

    But after some days it started hanging.That's a good clue.
    Does it show as a zombie process at the OS level?
    It appears to have "hung" waiting on some system resource, RAM, disk space etc . . .
    Have you bounced the database recently?
    First, I would check the free space in your SYSAUX tablespace . . . . .
    Hope this helps. . .
    Donald K. Burleson
    Oracle Press author
    Author of "Oracle Tuning: The Definitive Reference":
    http://www.dba-oracle.com/bp/s_oracle_tuning_book.htm

  • How to diagnose a hanging process/session?

    Hello,
    I've got a user that has a stored procedure that (I'm still waiting to get the code from him) he says basically drops a table, then recreates it by a select on another table. He says this only involves tables of about 600 rows.
    He has run this numerous times with no problems and it usually completes immediately.
    However, since yesterday, he fires this off, and it seems to just sit there hung forever. Even killing it takes a good bit of time.
    Strangely enough, this seems to have started happening on all 3 instances on the same box (3 different test environments, all approximately the same) at the same time.
    Can someone give me some good steps and suggestions to try to help troubleshoot this?
    Thank you,
    cayenne

    Oracle prevents modification of a procedure under certain conditions.
    1) Procedure does DML
    2) No COMMIT has been issued.
    No session is allowed to change procedure until either COMMIT or ROLLBACK is issued by session that did DML.
    In other words, user is blocking himself by invoking multiple sessions & never issuing COMMIT or ROLLBACK.
    Edited by: sb92075 on Sep 1, 2009 7:11 AM

  • Database Hanging Error

    Hi,
    I am working oracle9i and WIndows 2003 Server.Sometimes my Database is Hanged up and i am not able to logint to the Database using PL/SQL. Then i restarted the DB again . After that the error is resolved. But everyday i am geeting this Database Hanging problem...
    Server and Network are fine.
    Please provide me the solution...
    REgs..

    Hi,
    You can see (Diagnosing Database Hanging Issues (Doc ID: Note:61552.1)) on Oracle Metalink.
    Adith

  • URGENT HELP PLEASE - drop index hangs on SAP

    Hi all,
    OS = Linux
    DBVersion = Oracle10.2.0.2
    Need some urgent help advise please on how to get around this problem.
    On a SAP system, am trying to drop six indexes, largest is 300MB and smallest is 50MB.
    I tried running drop index sapusername.index_name on the 50MB index via SQL*Plus and it seems to be taking forever. Can anyone please suggest if there is anything I can check on the database on why it is taking such a long time?
    I can leave it to run overnight but worried that when I come back the next day, it will still be hanged. Is there any quick way of dropping the index, .i.e. drop immediate ... :-)
    Am not using SAP's BRTOOLs as it is also hanging from there and the SAP-ADMIN had approved for the DBA to drop it from our end instead.
    Any response and advise on this will be very much appreciated.
    From Google'ing, I found some that mentioned that the fault could be because of the existence of the constraints on the table that I am dropping the index of.
    Checking the table, it has 17 SYS_ named constraints. None of these constraints have INDEX_NAME that refers to the indexes that am dropping.
    Should I disable the constraints and then run the drop index again?
    Thanks in advance.
    Edited by: user649596 on Apr 13, 2010 11:49 PM

    Should I disable the constraints and then run the drop index again?NO, certainly not !!
    Ask SAP Support on what methods you should use to diagnose the "hang" and what your next step(s) should be.
    Hemant K Chitale

  • Drop user command hangs on 10.2.0.1

    Hi,
    db version: 10.2.0.1 64 bit
    os : sun 5.9
    I created a sample user
    $. sqlplus / as sysdba
    sql> create user 'test' identified by test default tablespace tools;
    granted connect and resource to the user
    sql> created sample table and inserted few values in the table.
    now when i try to drop the user the session hangs for ever.
    sql> drop user test cascade;
    is this a bug? or am I missing something?
    Thanks

    Get SYSTEMSTATE and HANGANALYZE Dumps
    This creates a large trace file in the user_dump_dest (30M or more is not unusual).
    Note: the init<sid>.ora parameter MAX_DUMP_FILE_SIZE controls the maximum trace file size. Using Oradebug and setting unlimit will allow a complete dump which we will need.
    Do this step for sure if the entire database is frozen or nearly frozen and if this condition came on suddenly and there are no archive errors in the alert log. Please note: As systemstate dumps are instance specific, they tend to be inconclusive with hanging problems involving Oracle Parallel Server (OPS) unless you get them from each node. You will need 3 system state dumps from each node for OPS.
    NOTE: Do systemstate dump 3 times in a row, so we can determine whether
    the processes are hung or active.
    For Oracle 9.2.0.1 or higher
    $ sqlplus /nolog
    connect / as sysdba
    oradebug setmypid
    oradebug unlimit
    oradebug hanganalyze 3
    wait 90 seconds
    oradebug hanganalyze 3
    oradebug dump systemstate 10
    wait 90 seconds
    oradebug dump systemstate 10
    wait 90 seconds
    oradebug dump systemstate 10
    metalink doc Subject:      Diagnosing Database Hanging Issues
         Doc ID:      Note:61552.1

  • AppleScript works in the background but UI hangs

    When I run this AppleScript http://crystal-objects.com/blogs/frank/aperture_import_action_scripts091511 with OS X Version 10.8.4 and Aperture 3.4.5 the AppleScript Editor GUI hangs displaying multi-coloured spinning disc but the script itself seems to be working with Aperture open I can see the files moving into the new folder structure. The "problem" I am trying to solve with the AppleScript is described here https://discussions.apple.com/thread/3321103?start=0&tstart=0 but I have come to this forum for help diagnosing this hanging issue in the script. Any ideas?

    Neville
    Also the script could be simplified by using the following to create folders if they don't exist for populating with timed files:
    do shell script "d=~/Desktop/pic/; mkdir -p $d; f=$d`date +%y%m%d%H%M%S`.png"
    the script is creating folders inside of an Aperture library. Thise are not Finder folders and your suggestion will not work.
    regards

  • Authentication prompt issue when opening an office file in a document library with read permission for domain users

    An user as part of the domain users tries to open an office file from a document library but he got an authentication prompt asking him to authenticate. Domain users has only access to this library and not to the whole site. This uses to work in SharePoint
    2007 without any problem but not in SharePoint 2013, we didn't have a workflow on SP2007.
    Domain users has read access to only this document library in the site, but he shouldn't get an authentication prompt since he is part of the domain users and he is not trying to modify the document, he can open the document but gets two prompts, he can't
    also see the list using explorer view since nothings appears using the explorer view.
    Now, when opening the file, we can see..Updating Workflow Status, but we don't have any workflow working on this site or library, event any feature related to workflow.
    If we go to the event viewer in the server, we find this information,
    I also checked this thread but I couldn't find this scenario.
    https://social.technet.microsoft.com/Forums/sharepoint/en-US/91bc770b-bb70-4885-a4ad-a243edb88753/event-id-8026-workflow-soap-getworkflowdataforitem-failed-doc-library-no-workflow?forum=sharepointgeneralprevious
    I also created another list with the same permissions and using other office files but got the same behavior.
    Now, we have migrated this site from SP2007 to SP2013.
    Any ideas?

    OK, I am going to throw out a lot of ideas here so hopefully they get you closer to a diagnosis. Hang on :)
    Does it happen to work for some users but not others? If so, try logging in on the "good" computer with the "bad" username. This will tell you if the problem is related to the end-user's system. Also, once the user downloads a document
    successfully can they open and work on it in Word? Also, does the document library have any custom content types associated with it or does it just use 'Document'?
    I notice that there are other folks on the web that have run into this same problem and the similarity seems to be that they are either on SharePoint 2007 or have upgraded from 2007. Did this doc library start out as a 2007 library?
    What you might want to do is this: Make a site collection from scratch in 2013 (or find one that you know was created in 2013). Choose team site (or whatever you want) for the root web and set up the security the same way you have it on the malfunctioning
    library. Now, use windows explorer to copy and paste some of the documents to the new location. Be sure you recreate any needed content types. Now test it from the troubled user's computer.
    I'm thinking there may be something that is different about the library since it was migrated through various versions and updates since 2007. I've sometimes found that there can be problems (especially with user profiles but that's a different story) with
    things that go through this evolution.

  • Please, do not read this thread. This is a test.

    1. X$KGLLK, X$KGLPN --> definition
    2. EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS(); job log--> where??
    ① You might see this Problem: Perf: Emd_maintenance.Execute_em_dbms_job_procs() Job Using All Cpu Doc ID: Note:308291.1.
    ② Oracle Metalink Doc ID 4636497 EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS() JOB DOES NOT STOP.
    Extracts of the Document,
    DBConsole is stopped the EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS() continues running each minute. This job must be stopped too because Agent is not collecting information because is down.
    ③ You can remove this as indicated in the Metalink Document that I have referenced in my first post. After that you can create this job manually by viewing How to create job EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS manually
    Doc ID Note: 44033.1. You can then see if the problem persists.
    Additionally you should perform these tasks at test sites and please read the documents carefully.
    3. DBSNMP/SYSMAN user
    4. dbconsole, emagent --> difference
    5. sysaux tablespace segment --> organize
    6. kill J001 on a test db and see what will happen
    7. emagent.trc のログ
    8. lock 関連テーブル整理
    - dba_ddl_locks or dba_lock_internal
    - v$lock and v$locked_object only shows enqueue locks, not library cache locks.
    9. 10g default procedureのtruncate command
    - enterprise manager のdefault procedureが、truncateを実行している。--> どれ??
    10. how about enabling trace event 10046 to see where your kernals are waiting?
    --> 10046 trace event for node2 444 session
    11. library cache invalidated object monitoring, reload monitoring
    12. v$latch (and v$latch_children)
    - v$libraryache latch get/pin
    13. AWR report
    - library cache 関連
    - parsing 関連
    - what is cpu time in Top 5 Timed Events
    --> I'd take a guess that you have a problem with excessive CPU usage causing a library cache problem as a side effect.
    -There are many notes in metalink, which will help you to identify root cause of "libary cache lock".
    14. parameter
    cursor_space_for_time=true,
    ●● その他
    If the problem still, persists, I suggest you to run hunganlyze ' DIAGNOSING DATABASE HANGING ISSUES' see metalink.

    1. X$KGLLK, X$KGLPN --> definition
    2. EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS(); job log--> where??
    ① You might see this Problem: Perf: Emd_maintenance.Execute_em_dbms_job_procs() Job Using All Cpu Doc ID: Note:308291.1.
    ② Oracle Metalink Doc ID 4636497 EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS() JOB DOES NOT STOP.
    Extracts of the Document,
    DBConsole is stopped the EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS() continues running each minute. This job must be stopped too because Agent is not collecting information because is down.
    ③ You can remove this as indicated in the Metalink Document that I have referenced in my first post. After that you can create this job manually by viewing How to create job EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS manually
    Doc ID Note: 44033.1. You can then see if the problem persists.
    Additionally you should perform these tasks at test sites and please read the documents carefully.
    3. DBSNMP/SYSMAN user
    4. dbconsole, emagent --> difference
    5. sysaux tablespace segment --> organize
    6. kill J001 on a test db and see what will happen
    7. emagent.trc のログ
    8. lock 関連テーブル整理
    - dba_ddl_locks or dba_lock_internal
    - v$lock and v$locked_object only shows enqueue locks, not library cache locks.
    9. 10g default procedureのtruncate command
    - enterprise manager のdefault procedureが、truncateを実行している。--> どれ??
    10. how about enabling trace event 10046 to see where your kernals are waiting?
    --> 10046 trace event for node2 444 session
    11. library cache invalidated object monitoring, reload monitoring
    12. v$latch (and v$latch_children)
    - v$libraryache latch get/pin
    13. AWR report
    - library cache 関連
    - parsing 関連
    - what is cpu time in Top 5 Timed Events
    --> I'd take a guess that you have a problem with excessive CPU usage causing a library cache problem as a side effect.
    -There are many notes in metalink, which will help you to identify root cause of "libary cache lock".
    14. parameter
    cursor_space_for_time=true,
    ●● その他
    If the problem still, persists, I suggest you to run hunganlyze ' DIAGNOSING DATABASE HANGING ISSUES' see metalink.

  • Corrupt document gets created in document library with document template using createlistitem workflowaction in visual studio workflow for office 365 solution

    Hi,
    My requirement is to create a document library associated to a custom content type with a document template associated. Also I need to create a document based on the template in this document library when a new item is created in another list by taking the
    reference ID of that new Item , I need to create the document with the name appended by ID. I need to do all this deployment using WSP.
    I have created document library with document template associated to content type by following instructions in below stated blog :http://blogs.msdn.com/b/chaks/archive/2011/05/19/deploying-a-document-template-file-in-content-type-in-a-office365-sandboxed-solution.aspx
    This works perfect for me.
    However, there are few observations, when going to Document Library > Library Settings > Advanced Settings > Document Template section - doesnt shows the Edit template link. When tried to look at the value for the document template using view source
    , it is giving me /Lists/MyDocsListInstance/Forms/template.dotx instead of the actual template file uploaded.
    Ignoring the above observation, when I am trying to create a sandbox based workflow in visual studio to create document in document library when new item is created in another list, I provide the ContentTypeID as the ID associated with the document library
    with template. 
    It creates the corrupt document at end of workflow. 
    I have tried using .docx instead of .dotx files for workflow as per solution provided in some of the post but it isnt resolving my issue.
    Any help is much appreciated.
    Regards,
    Krutika

    OK, I am going to throw out a lot of ideas here so hopefully they get you closer to a diagnosis. Hang on :)
    Does it happen to work for some users but not others? If so, try logging in on the "good" computer with the "bad" username. This will tell you if the problem is related to the end-user's system. Also, once the user downloads a document
    successfully can they open and work on it in Word? Also, does the document library have any custom content types associated with it or does it just use 'Document'?
    I notice that there are other folks on the web that have run into this same problem and the similarity seems to be that they are either on SharePoint 2007 or have upgraded from 2007. Did this doc library start out as a 2007 library?
    What you might want to do is this: Make a site collection from scratch in 2013 (or find one that you know was created in 2013). Choose team site (or whatever you want) for the root web and set up the security the same way you have it on the malfunctioning
    library. Now, use windows explorer to copy and paste some of the documents to the new location. Be sure you recreate any needed content types. Now test it from the troubled user's computer.
    I'm thinking there may be something that is different about the library since it was migrated through various versions and updates since 2007. I've sometimes found that there can be problems (especially with user profiles but that's a different story) with
    things that go through this evolution.

  • AMD Radeon HD 7770 GHZ Edition Resolution incorrect and computer hangup

    Hello all. I have been chasing down a problem with my computer hanging up when playing CS:GO. The computer will freeze/lag and repeat the previous 1second of audio/video until I hard boot the system or pull power. I updated my BIOS version as well as installed all of the most recent drivers for both MoBo and Catalyst Control Center.
    My build specs exactly:
    CPU: Intel Core i5-4670K 3.4GHz Quad-Core Processor ($199.99 @ Microcenter)
    Motherboard: ASRock Z87M PRO4 Micro ATX LGA1150 Motherboard ($99.99 @ Newegg)
    Memory: Patriot Signature 8GB (2 x 4GB) DDR3-1600 Memory ($52.99 @ Newegg)
    Storage: Samsung 840 Series 120GB 2.5" Solid State Disk ($90.99 @ Amazon)
    Storage: Seagate Barracuda 1TB 3.5" 7200RPM Internal Hard Drive ($59.99 @ NCIX US)
    Video Card: MSI Radeon HD 7770 GHz Edition 1GB Video Card ($69.99 @ Newegg)
    Case: Fractal Design Core 1000 USB 3.0 MicroATX Mid Tower Case ($29.99 @ Microcenter)
    Case Fan: Arctic Cooling Arctic F9 43.0 CFM 92mm Fan ($4.98 @ Amazon)
    Power Supply: XFX 550W 80 PLUS Bronze Certified ATX12V / EPS12V Power Supply ($45.99 @ NCIX US)
    Optical Drive: Samsung SH-224DB/BEBE DVD/CD Writer ($15.99 @ Microcenter)
    OS: Windows 7 64bit Home Premium
    When I initially installed the video card and set it up, I had set the resolution to MAX which is 1920x1080 (my natural ASUS LED monitor's resolution) but got a black border around the desktop screen. I didn't think much of it and just reduced the resolution to something that fit better (dont exactly remember the size) but in an effort to troubleshoot the problem, I removed the video card and ran the monitor off of the MoBo HDMI output. When I set the resolution to 1920x1080, the desktop fit perfectly.
    What would cause the same resolution settings from the HDMI out on the MoBo and HDMI out from the video card to display differently?
    I completely uninstalled CCC and reinstalled the driver and there is no change in the difference in resolution display.
    Some things I tried to diagnose the hang-up problems:
    MemTest86+ on both sticks of ram for 10+hours without an error
    Prime95 for 4+ hours without an error
    FurMark ran at 17FPS at the reduced resolution for 20+ minutes sitting at ~60-62C steady state without a hiccup
    CPU and GPU temps are always in check, never reaching past 65C under full load. I have not overclocked anything or adjusted the performance of the system. It is really frustrating and I am wondering if the 2 problems are connected somehow.
    Any help on the resolution issue would be fantastic!

    Quote from: badboy2k on 14-October-13, 20:37:53
    for the black border via HDMI that's normal as it will have scaling on 10% by default!
    1: go into the AMD software
    2: expand My Digital Flat-Panels
    3: go to Scaling Options (Digital Flat-Panel)
    4: change the scaling from 10% to 0% and apply
    now it should fill the whole screen at 1920x1080 resolution!
    Ill try that when I get home! Thanks!
    Just out of curiosity, why would the scaling be down 10%?? That seems kinda silly!

  • Can not connect to URL

    Dear,
    Suddenly, we could not connect to our production servers (2 nodes apps and 2 nodes RAC) and it also happened to the DEV (RAC env)
    after stop and restart adopmnctl stopall and adopmnctl startall
    the connection is fine now. looked at the http error logfiles, forms logfile not much error there.
    Would you please suggest where can i find the error.
    Thanks in advance,
    Tom
    i did check in
    $INST_TOP/log/ora/ora/10.1.3/Apache/error_log.xxxx
    $INST_TOP/log/ora/ora/10.1.3/j2ee/forms/forms_default_group_1/application.log
    09/08/05 07:17:19.867 formsweb: 10.1.3.0.0 Started
    09/08/05 08:24:19.522 formsweb: ListenerServlet init()
    09/08/11 10:30:57.24 formsweb: Forms session <302> aborted: unable to communicate with runtime process.
    09/08/11 10:30:57.25 formsweb: Forms session <302> exception stack trace:
    java.io.IOException: FRM-93000: Unexpected internal error.
    Details : No HTTP headers received from runform
    at oracle.forms.servlet.ListenerServlet.forwardResponseFromRunform(Unknown Source)
    at oracle.forms.servlet.ListenerServlet.doPost(Unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:719)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:299)

    Danny,
    Can you find any dump files created? I would suggest you go through the following documents.
    Note: 255023.1 - How to Interpret the Oracle Forms Error - FRM-93000
    Note: 179612.1 - Diagnosing Webforms Hanging
    Note: 400144.1 - How To Perform System Tracing For All Forms Runtime Processes?
    Regards,
    Hussein

  • MSI845pe max2 and Audigy2 is getting me nuts...

    I have a problem with the audigy2, i works fine on other computers but not in mine. I have tryed every advice Creative could give: change acpi/ change irq setings/ update gpu driver/ change sound card slot/ ... I probably have formatted my computer 4 times for this problem. This is going on for more then 3 months now, 3weeks ago i sended a mail to msi and last week... This issue is really getting me nuts, the audigy2 card costed me 150€, i would really like a solution for this...  ;(  
    Anybody?

    My story is long, but I will be brief. I spent a considerable amount of time and nerve-endings trying
    to diagnosis my hang.  I corresponded with many on the forums, including Jonas who replied on this thread.
    The common point of interest with your situation and mine is your use of Audigy 2.  I feel that this too had something to do with my hang because when I would loop 3DMark2001 without sound, it would go forever.
    However, when I looped with sound, it would hang anywhere from 1 minute to 2 hours.  The on-board sound worked fine.  I almost threw the Audigy 2 card out until I convinced myself that it was not the card since it worked fine in another machine.
    Alas, I returned my mobo for a replacement of the same and now with all things being equal, no more hangs.  I'm even using the WDM drivers with the Audigy card.
    The only thing that bummed me out was the fact the memory prices dropped by 40% while I was waiting
    for my new mobo..could have save a few more bucks.
    Do what you must...  
    How are your temp readings? :D

  • Msi kt4 D Bracket help pls

    hi quick query my old secondary comp running a msi kt4 (2000+) has stopped working propally. when i push the power button all seems to boot up fine but nothing appears on the screen. (have tried resetting the bios via cmos and using a different monitor)
    i have looked at the d bracket and it just stays on
    BOTTOM RIGHT RED   
    Testing RTC (Real Time Clock) 
    any ideas what this means and wheather this is why its not displaying anything on the screen? its running a geforce 2mx (amcient i know but only used for work) and i don't have another spare agp card to test it (current card pci express in my gaming rig)
    any help would be great thanx

    From Good Articles forum: D-Bracket LED explained
    The D-Bracket shows the last stage of the POST process that was completed, so when diagnosing a hang-up, you should look at the NEXT pattern in the sequence, in your case
    Initializing Video Interface
    - This will start detecting CPU clock, Checking type of video onboard. Then, detect and initialize the video adapter.
    Quote
    all seems to boot up fine but nothing appears on the screen.
    please elaborate further! when you power on, all fans start spinning? you can hear the hard drive spinning up? any system beeps? any hard drive/CD drive LED activity?
    basically is the system still booting up as normal (into Windows) but just not displaying anything, or has it powered on and then just not done anything? if the latter, try removing the video card and then powering up and seeing if you can notice any difference

  • Msi845pe max2 and audigy2 the end...

    Some time ago i had problems with the msi845pe max2 and the audigy2, i bought new mobo, problem gone...
    (my problem is explained some pages on the forum ago...)
    "One design flaw we have found on the 845PE Max2 is the interference between the memory banks and the video card. This little issue has been noticed on several of today motherboards including on our previously reviewed P4/AMD boards and generally requires removing larger video cards such as the GeForce4 4600 in order to add a memory module.
    " http://www.targetpc.com/hardware/motherboards/msi_845pe/
    It dates back to 12th January, 2003, but no one of msi knew that. The would know it if the would have searched a bit more on this freezing problem.
    I still aint sure that is the problem...
    Maybe the msi's inf-driver or the bios has a problem.
    Just to say; I think I never gona buy Msi again, not only for the litle fault in the mobo (maybe it isnt their fault), but for being ignorant and for their bad support.
    I'm happy my 4months during problem is gone now, now i have a nice Intel Blue Mountain (20euros more, but its smaller then msi's 845pe chipset, i has better placed its ports, it has a lan adapter (for msi's lan option, u ll pay the same amount as intel's), and the best: no problems.
    Msi makes fine, good-looking boards, but there are many litle problems with it(says many pcshops here); because of that reason Msi is hard to find here, shops dont wana sell msi no more.
    Now i payed 160euros for the intel board, now i have no problems anymore, but that wouldnt give my money back, would it...
    Byebye msi, and thx for nothing (and keep ur money)

    My story is long, but I will be brief. I spent a considerable amount of time and nerve-endings trying
    to diagnosis my hang.  I corresponded with many on the forums, including Jonas who replied on this thread.
    The common point of interest with your situation and mine is your use of Audigy 2.  I feel that this too had something to do with my hang because when I would loop 3DMark2001 without sound, it would go forever.
    However, when I looped with sound, it would hang anywhere from 1 minute to 2 hours.  The on-board sound worked fine.  I almost threw the Audigy 2 card out until I convinced myself that it was not the card since it worked fine in another machine.
    Alas, I returned my mobo for a replacement of the same and now with all things being equal, no more hangs.  I'm even using the WDM drivers with the Audigy card.
    The only thing that bummed me out was the fact the memory prices dropped by 40% while I was waiting
    for my new mobo..could have save a few more bucks.
    Do what you must...  
    How are your temp readings? :D

Maybe you are looking for

  • BAPI_GOODSMVT_CREATE - Error - RE Qty. transferred exceeded 1 PC

    Hi Experts, We are  trying to do the material document posting using the transaction "MB1C" manually in SAP. The movement type which we are using for the same is "261".  While doing this is, it is asking for a work order number and the Recipient numb

  • Error while integrating Windows System - Share into KM

    Hi Experts, I am new to KM and there is a requirement of Integrating Windows System into KM. Portal System : a.xyz.com Remote System: b.xyz.com Share - b.xyz.com\d_share$ Both systems reside in the same domain and share is created on the remote syste

  • Spry Tabbed Panels - not correct in IE but correct in Chrome and MF

    Hi, I'm having problems with an extension I used for a client, so I want to use the Spry tabbed panels form dreamweaver, but they in IE8 it puts all the content under each other in the first tab ?? In Chrome and MF its correct. Do you know about this

  • Accidental​ly installed Developer version trying to get real version of bb 10.3

    Hello, So i was getting a bit fed up with waiting for the bb 10.3 update. I still was unable to get it. I searched online and found a link from blackberry for the update. I wasn't paying much attention and downloaded and installed the Developers vers

  • Disabling Mission Control on 2nd Display

    I am using an iMac with 2nd display configured for video output, so that what the software (ProPresenter, in this instance - could equally apply to Keynote or PowerPoint, for example) is showing on the 2nd display goes to our video switcher and proje