HttpConnection hangs in my T630. Please Help !

Hi all,
I`ve noticed this problem in a few threads on this forum, but none of them seem to have a definitive answer. Maybe we can answer it once and for all here :-) Any help would be greatly appreciated.
I`m trying to load a web page from a midlet in my T630. As I don`t really want to pay for call charges during development, I`m using the "Device Explorer" and the "Connection proxy" to try and connect to the internet using my broadband connection. I'm using the SonyEricsson developer kit (version 1) and I'm using a bluetooth serial connection on COM5 for the connection proxy.
I've based my code on some sample code from Sun to load some info from a web page. This code was even published to get around the IO blocking problem that I seem to be getting still !
The problem is when I try and use the HttpConnection.getResponseCode() method. Using the advice of other internet resources, I`ve put this code in its own thread. When I call HttpConnection.getResponseCode(), my T630 then pops ups with a menu, offering me these 3 options:
Allow Web access
Ask per access
Deny Web access
When this happens, it`s as if the thread running the getResponseCode() method blocks, and the T630 OS takes over. When I select an item from that menu, control does not pass back to the thread running getResponseCode(), but goes to the main midlet thread. Once I`m back in the main midlet thread, I don't know how to wake up the url loading thread. Does anyone have any ideas.
My debugging statements produce the following before the app hangs:
url=http://java.sun.com
conn=com.sun.midp.io.j2me.http.Protocol@e4857a1d
here
Connecting to http://java.sun.comHere is the source code:
package com.pg.midp.http;
import java.io.IOException;
import javax.microedition.io.Connector;
import javax.microedition.io.HttpConnection;
import javax.microedition.lcdui.Alert;
import javax.microedition.lcdui.Command;
import javax.microedition.lcdui.CommandListener;
import javax.microedition.lcdui.Display;
import javax.microedition.lcdui.Displayable;
import javax.microedition.lcdui.Form;
import javax.microedition.lcdui.StringItem;
import javax.microedition.lcdui.TextBox;
import javax.microedition.midlet.MIDlet;
import javax.microedition.midlet.MIDletStateChangeException;
// Simple class that connects to a given URL and
// prints out the response code and any headers
// that are sent back. Shows how to use background
// threads to make HTTP connections while keeping the
// user interface alive.
public class HttpLogger extends MIDlet
     private Display display;
     private Command exitCommand = new Command([quot][/quot]Exit[quot][/quot], Command.EXIT, 1);
     private Command okCommand = new Command([quot][/quot]OK[quot][/quot], Command.OK, 1);
     private Command cancelCommand = new Command([quot][/quot]Cancel[quot][/quot], Command.CANCEL, 1);
     private URLEntry mainForm;
     // Standard MIDlet stuff....
     public HttpLogger()
     protected void debug(String s)
          System.out.println(s);
     protected void destroyApp(boolean unconditional) throws MIDletStateChangeException
          exitMIDlet();
     protected void pauseApp()
     protected void startApp() throws MIDletStateChangeException
          if (display == null)
               initMIDlet();
     private void initMIDlet()
          display = Display.getDisplay(this);
          mainForm = new URLEntry();
          display.setCurrent(mainForm);
     public void exitMIDlet()
          notifyDestroyed();
     // Utility routine to display exceptions.
     void displayError(Throwable e, Displayable next)
          Alert a = new Alert([quot][/quot]Exception[quot][/quot]);
          a.setString(e.toString());
          a.setTimeout(Alert.FOREVER);
          display.setCurrent(a, next);
     // Simple entry form for entering the URL to
     // connect to.
     class URLEntry extends TextBox implements CommandListener
          URLEntry()
               super([quot][/quot]Enter URL:[quot][/quot], [quot][/quot]java.sun.com[quot][/quot], 100, 0);
               addCommand(exitCommand);
               addCommand(okCommand);
               setCommandListener(this);
          public void commandAction(Command c, Displayable d)
               if (c == exitCommand)
                    exitMIDlet();
               else if (c == okCommand)
                    try
                         String url = [quot][/quot]http://[quot][/quot] + getString();
                         debug([quot][/quot]url=[quot][/quot] + url);
                         HttpConnection conn = (HttpConnection) Connector.open(url);
                         debug([quot][/quot]conn=[quot][/quot] + conn);
                         Logger logger = new Logger(this, conn);
                         debug([quot][/quot]here[quot][/quot]);
                         display.setCurrent(logger);
                    catch (IOException e)
                         displayError(e, this);
     //      Simple form that contains a single string item.
     //      The string item is updated with status messages.
     //      When constructed, it starts a background thread
     //      that makes the actual HTTP connection. Displays
     //      a Cancel command to abort the current connection.
     class Logger extends Form implements Runnable, CommandListener
          private Displayable next;
          private HttpConnection conn;
          private StringItem text = new StringItem(null, [quot][/quot][quot][/quot]);
          boolean done = false;
          Thread t;
          Logger(Displayable next, HttpConnection conn)
               super([quot][/quot]HTTP Log[quot][/quot]);
               this.next = next;
               this.conn = conn;
               addCommand(cancelCommand);
               setCommandListener(this);
               append(text);
               t = new Thread(this);
               t.start();
          // Handle the commands. First thing to do
          // is switch the display, in case closing/
          // the connection takes a while...
          public void commandAction(Command c, Displayable d)
               display.setCurrent(next);
               try
                    conn.close();
               catch (IOException e)
                    displayError(e, next);
          // Do the connection and processing on
          // a separate thread...
          public void run()
               try
                    update([quot][/quot]Connecting to [quot][/quot] + conn.getURL());
                    try
                         int rc = conn.getResponseCode();
                         update([quot][/quot]Response code: [quot][/quot] + rc);
                         update([quot][/quot]Response message: [quot][/quot] + conn.getResponseMessage());
                         String key;
                         for (int i = 0; (key = conn.getHeaderFieldKey(i)) != null; ++i)
                              update(key + [quot][/quot]: [quot][/quot] + conn.getHeaderField(i));
                    catch (IOException e)
                         update([quot][/quot]Caught exception: [quot][/quot] + e.toString());
               catch (Exception e)
                    debug(e.getMessage());
                    e.printStackTrace();
               finally
               done = true;
               removeCommand(cancelCommand);
               addCommand(okCommand);
          // Update the string item with new information.
          // Only do it if we're actually visible.
          void update(String line)
               debug(line);
               if (display.getCurrent() != this)
                    return;
               String old = text.getText();
               StringBuffer buf = new StringBuffer();
               buf.append(old);
               if (old.length() [gt][/gt] 0)
                    buf.append('\n');
               buf.append(line);
               text.setText(buf.toString());
}Thanks,
Paul.

Hi, Paulgrime:
These days I also have struggled with the problem.
I just saw a java example from SUN site, which does not use getResponseCode(). It seems a good work around.
I tried that way and works fine. Only thing is you have to figure out the response status by analysing the inputstream content, which is actually easy.
So I go this way now.
Huiyi

Similar Messages

  • 10g form hangs when compiling! - please help!

    Hi,
    I'm having a problem compiling a couple of my forms. I'm using forms 10g and when I compile the form it hangs in a particular program unit. Actually, if I connect to my database first and then open the form in forms builder, it will hang. I have to connect after I load the form.
    In the program unit that compiling is hanging on, we are selecting from a synonym which is a dblink to another database. The synonym is in a 9i database, the dblink is linking to a table in a 10g database. I can see the synonym and perform a select from it. However, it will not compile in the form.
    Please help!
    Thanks!

    Hi,
    The same issue is faced by me when I was migrating my application from forms6i (oracle 8i) to forms 10g(oracle 10g).
    Solution:
    create a view based on the table on the other database (use db link)
    now create a synonym using this view and make it public.
    use this synonym in your form.
    It looks like something weared but this worked !!
    Try it !!

  • Firefox 4.0 all of a sudden starts hanging. Tried everything please help.

    Okay so I've had firefox 4.0 for months now and all of a sudden it started hanging every few seconds. Now I since this happened I've been looking everywhere for a solution.
    I've tried uninstalling it and re-installing 3.6.15. I tried starting it in safe mode and having ALL of my add-ons and everything disabled. I tried creating a new profile, but that still didn't work. I made sure all my plug-ins were up to date and they are.
    The first thing I did was run a system wide scan with Norton Internet Security to see if there was a virus and nothing showed up. I've literally tried EVERYTHING I could possibly think of so please please help would be very much appreciated.

    Just read that the default memory storage on FF is set to 5 mbs. You can up that by clicking on tools, advanced and overriding the default and set it to 50 mbs (if you use lots of tabs) or 10 mbs (if you use just a few).
    I open a blank tab and clear the cache periodically, while I am working. I can have several tabs open and watch videos on Youtube, by doing this. Have you cleared your cache?
    Since I have an older computer, I've also used CCleaner for years. I use it often, but always before signing off. You can get it free...search for CCleaner, download from Pirifoam free. I didn't change any of the settings and it clears crap left behind from uninstalling programs, clears all browsers at once of: cookies, history, passwords, etc. I love it!
    I had freezing, before using the "open blank tab, clear the cache" thing. Now I have no problems. Plus, as I said...you can change the default memory usage for FF and that should help too.
    Hope this helps! Good luck! :)

  • Sir, i have apple macbook the old not it is neither  pro nor air it is a simple one . it is running on mac 10.5.6 and i am not able to update it to 10.5.8 it hangs while updating so please help

    sir i cant update my macbook to mac os x 10.5.8 . it hangs wile updating and i am looking for a better update . knidly reply thanks

    Some general advice on updating Leopard:
    It is worth noting that it is an extreme rarity for updates to cause upsets to your system, as they have all been extensively beta-tested, but they may well reveal pre-existing ones, particularly those of which you may have been unaware. If you are actually aware of any glitches, make sure they are fixed before proceeding further.
    So before you do anything else:
    If you can, make a full backup first to an external hard disk. Ideally you should always have a bootable clone of your system that enables you to revert to the previous pre-update state.
    Turn off sleep mode for both screen and hard disk.
    Disconnect all peripherals except your keyboard and mouse.
    1. Repair Permissions (in Disk Utility)
    2. Verify the state of your hard disk using Disk Utility. If any faults are reported, restart from your install disk (holding down the C key), go to Disk Utility, and repair your startup disk. Restart again to get back to your startup disk.
    At least you can now be reasonably certain that your system does not contain any obvious faults that might cause an update/upgrade to fail.
    3. Download the correct version of the COMBO update from the Apple download site.
    The Combo updater of Leopard 10.5.8 can be found here:
    http://support.apple.com/downloads/Mac_OS_X_10_5_8_Combo_Update
    If you prefer to download updates via Software Update in the Apple menu (which would ensure that the correct version for your Mac was being downloaded), it is not recommended to allow SU to install major (or even minor) updates automatically. Set Software Update to just download the updater without immediately installing it. There is always the possibility that the combined download and install (which can be a lengthy process) might be interrupted by a power outage or your cat walking across the keyboard, and an interrupted install will almost certainly cause havoc. Once it is downloaded, you can install at a time that suits you. You should make a backup copy of the updater on a CD in case you ever need a reinstall.
    Full details about the 10.5.8 update here: http://support.apple.com/kb/HT3606
    More information on using Software Updater here:
    http://support.apple.com/kb/TA24901?viewlocale=en_US
    Using the Combo updater ensures that all system files changed since the original 10.5.0 are included, and any that may have been missed out or subsequently damaged will be repaired. The Delta updater, although a temptingly smaller download, only takes you from the previous version to the new one, i.e. for example from 10.5.7 to 10.5.8. Software Update will generally download the Delta updater only. The preferable Combo updater needs to be downloaded from Apple's download site.
    Now proceed as follows:
    4. Close all applications and turn off energy saving and screensaver.
    5. Unplug all peripherals except your keyboard and mouse.
    6. Install the update/upgrade. Do not under any circumstances interrupt this procedure. Do not do anything else on your computer while it is installing. Be patient.
    7. When it ask for a restart to complete the installation, click restart. This can take longer than normal, there are probably thousands of files to overwrite and place in the correct location. Do nothing while this is going on.
    8. Once your Mac is awake, repair permissions again, and you should be good to go!
    If your Mac seems slightly sluggish or ‘different’, perform a second restart. It can’t hurt and is sometimes efficacious! In fact a second restart can be recommended.
    9. Open a few of your most used applications and check that all is OK. In this connection please remember that not all manufacturers of third party applications and plug-ins, add-ons, haxies etc, will have had time to do any necessary rewrites to their software to make them compliant with the latest version of your operating system. Give them a week or two while you regularly check their websites for updates.
    N.B. Do not attempt to install two different updates at the same time as each may have different routines and requirements. Follow the above recommendations for each update in turn.
    Lastly, Apple's own article on the subject of Software Update may also be useful reading:
    http://docs.info.apple.com/article.html?artnum=106695
    [b]If you are updating Safari (or just have):[/b]
    Input Managers from third parties can do as much harm as good. They use a security loophole to reach right into your applications' code and change that code as the application starts up.  If you have installed an OS update and Safari is crashing, the very [i]first[/i] thing to do is clear out your InputManagers folders (both in your own Library and in the top-level /Library), log out and log back in, and try again.
    So, disable all third party add-ons before updating Safari, as they may not have been updated yet for the new version. Add them back one by one. If something goes awry, remove it again and check on the software manufacturer's website for news of an update to match your version of Safari.
    Most errors reported here after an update are due to an unrepaired or undetected inherent fault in the system, and/or a third party add-on.
    Additional tips on software installation here:
    http://docs.info.apple.com/article.html?artnum=106692
    To reiterate, Input Managers reach right into an application and alter its code. This puts the behavior of the affected application outside the control and responsibility of its developers: a recipe for  problems. That's not to say that issues absolutely will ensue as a result of Input Managers, but you, as a user, must decide. If the functionality of a specific Input Manager or set thereof is really important to you, you may well choose to assume the associated risk.
    Again, the advice is to remove all Input Managers from the following directories:
    /Library/InputManagers
    ~/Library/InputManagers
    especially prior to system updates (they can always be added back one-by-one later).
    Solutions for troubleshooting installation, startup, and login issues in Mac OS X v10.5
    http://support.apple.com/kb/TS1541?viewlocale=en_US

  • Database hang....Please help

    Hello,
    We are currently running a client sever based aplication with
    PB 5.04 as front end and ORACLE7.3.4 on Windows NT server. In a
    particular situation,we are calling a procedure using RPC(Remote
    procedure call). The procedure creates a user (Using DBMS_SQL
    pkg) and grant connect and then issues a grant to role to a
    user. Till granting connect there is no problem. But while
    grating the role to the user, it hangs. It returns only if we
    shutdown immediate.
    The current user who exectes this procedure has grant any role
    with admin option (through one of its role). Sometimes, it goes
    through fine, but not consistent.
    Can any one help. I really appreciate for your help.
    Thanks,
    RB

    What does the original client connection look like from the PB
    application? Am I logging on to the PB application as a user
    with no CREATE_USER priviledges?
    Let me know,
    Dan

  • Mac hangs at boot. Please help.

    Hello,
    I have been using an iMac (Mid 2007) for almost a year without any problem. Two weeks ago i star having this problem. I was using the Mac when i notice that it was very slow and that the keychain don't work (with Mail or System preferences for example) so i reboot, then it hangs at boot and constantly keep rebooting.
    For solving the problem i try to check and repair the disk but the disk utility didnt find any problem. So i decide to check and repair the permissions, there were a lot of bad permissions, and i repair them but when i reboot i hangs and keep rebooting like before.
    Before the problem i had made a backup of my system with SuperDuper! so i restore that backup to the drive and i could boot, and all works great for 2 days, then the same problem happens again. I had tried to restore the backup to differents partitions and drives, to check out a hardware problem, but the problem happens again with differents partitions and drives. This problem had happens 7 times in two weeks.
    The only thing that i remember that change in my system two weeks ago is that i install Intego VirusBarrier X5, before that i was using Norton AntiVirus 11.
    I would appreciate a lot any help that you could give me. I am really lost with this problem.
    Thanks,
    Marcelo

    If you just dragged Norton Anti-Virus application from the trash you didn't fully remove the application. There's lots more to be removed. The CD has an uninstaller program you must use. You may find this site useful. At least until you've resolved your problems you might want to consider removing Intego's anti-virus program. It too should have an uninstaller.
    My opinion of both companies is very low. They both use scare tactics to coerce users to buy and use their programs. At present there are no Mac malware in the wild - the sole exception being a trojan horse. Avoiding **** sites and ignoring their attempts to get you to download programs to view their wares should keep you safe from that little critter.

  • Dreamweaver CS4 hangs on images folder - please help!

    We are running DW CS4 with Subversion integration for version control.  Whenever we try to open the images folder on our local site copies, DW hangs for what seems like an eternity - usually 5 minutes - before opening.  I've replicated this behavior on both a mac and a windows platform.  On a mac at least, the problem goes away when version control is disabled.
    Has anyone else encountered the problem and resolved it?  We want to use version control but if we cannot end this behavior it may render the version control worthless becase of the performance hit our operations will take.
    Any help would be extremely appreciated.

    This post has been up now for almost two weeks and nobody has responded from Adobe.  I have also been working with Adobe support who have asked theat I delete and recreate the preferences folder and clean up temporary files.  None of these steps have worked.  The behav ior is strikingly consistent - delays of between 3 and 6 minutes to open an images folder, with exactly the same delay each time on the affected site, and absolutely no delay once version control is turned off.
    Is anybody else experiencing this?  Though I am willing to acknoweldge the possibility there could be config issues specific to our installation, this issue It has the smell of a bug within the version control setup itself.  I would ask anyone else using integfrated version control with DW CS4 to let me know if they have seen this problem.  Thank you.

  • HANGING AT BOOT.  PLEASE HELP!

    I was surfing youtube on my 'book, when the computer locked up really badly. The audio from the vid I was watching started looping and the machine itself became unresponsive to any input. I restarted and the computer chimed and the screen came on. It hangs at the gray screen displayed before the gray apple logo comes up. The machine will NOT safe-boot, boot in verbose mode, or in single user mode. I tried to bring up the disk picker by holding option, but it hangs after displaying the go and refresh buttons. No disks displayed, trackpad unresponsive. I tried install dvd 1(came with computer), and it boots as far as the apple logo but does not display the gear. I was able to verbose boot this mode. it displays the following:
    using 1310 cluster IO buffer headers
    IOPCCard info: Mac OS X PCMCIA Card Services 3.1.22
    IOPCCard info: options: [pci] [cardbus] [pnp]
    and then it hangs. I am unable to access AHT from this disk.
    Working on a hunch, I tried installing a new hard drive in the machine. Sadly, the same problems persist. I think that the problem may lie in open firmware, as the computer passes it's POST. I may be wrong, though.
    Any help would be appreciated, and gratefully accepted.

    Well, I found out what was wrong. A little clod of dirt was bridging a gap between the positive and negatve terminals of two resistors on the motherboard. I cleaned it off with a little water on a paper towel, and now the computer works fine.

  • 10.6.2  hangs on logging in please help.

    I noticed today that my macbook pro is hanging when i try to login in to the admin account, and have power of the mac twice by holding the power button, I have already repaired the permissions and the disk and it is still doing it every time i reboot.

    I noticed today that my macbook pro is hanging when i try to login in to the admin account, and have power of the mac twice by holding the power button, I have already repaired the permissions and the disk and it is still doing it every time i reboot.

  • Please help me to tune this PL/SQL...

    Hi everyone,
        I have a SQL query which runs ok when i run it individually but the same query if
    i use it in a procedure.The procedure is hanging up.Could someone please help to tune this
    SQL query and please check my procedure why is it hanging up.
    SQL Query
    =========
    SELECT active_members.member_nbr,
      active_members.name_last,
      active_members.name_first,
      active_members.name_middle,
      active_members.dob,
      active_members.sex,
      active_members.subsciber_nbr,
      active_members.ssn,
      active_members.name_suffix,
      active_members.class_x,
      active_members.aff_nbr,
    CASE
    WHEN TRIM(active_members.class_x) = 'SE' THEN
        (SELECT DISTINCT(mssp.member_nbr)
         FROM member_span mssp
         WHERE SUBSTR(mssp.member_nbr,    1,    9) = SUBSTR(active_members.member_nbr,    1,    9)
         AND mssp.class_x = 'SP'
         AND rownum = 1)
       WHEN TRIM(active_members.class_x) = 'SP' THEN
          (SELECT DISTINCT(mssp.member_nbr)
           FROM member_span mssp
           WHERE SUBSTR(mssp.member_nbr,    1,    9) = SUBSTR(active_members.member_nbr,    1,    9)
           AND mssp.class_x = 'SE'
           AND rownum = 1)
      ELSE
        NULL
       END)
    spouse_member_nbr,
      active_members.division_nbr,
      active_members.ymdeff,
      active_members.ymdend,
      active_members.actual_ymd_enddt,
      active_members.email_id,
      active_members.network_id,
      active_members.insurance_company_code,
      active_members.cob_flag,
      active_members.vip_flag,
      active_members.pre_x_flag,
      active_members.region,
      active_contracts.language_x,
      active_contracts.corp_nbr,
      active_members.group_nbr,
      active_members.non_erisa_status
    FROM
      (SELECT mb_active.member_nbr,
         mb_active.contract_nbr,
         mb_active.name_last,
         mb_active.name_first,
         mb_active.name_middle,
         ms_active.ymdeff,
         ms_active.ymdend,
         to_char(to_date(
       CASE
       WHEN LENGTH(mb_active.ymdbirth) = 8 THEN mb_active.ymdbirth
       ELSE NULL
       END,    'YYYYMMDD'),    'MM/DD/YYYY') dob,
         mb_active.sex,
         to_char(to_date(ms_active.ymdeff,    'YYYYMMDD'),    'MM/DD/YYYY') ymdeff_formatted,
         to_char(to_date(ms_active.ymdend,    'YYYYMMDD'),    'MM/DD/YYYY') ymdend_formatted,
         ms_active.void,
       CASE
       WHEN SUBSTR(mb_active.member_nbr,    10,    2) = '00' THEN mb_active.member_nbr
       ELSE SUBSTR(mb_active.member_nbr,    1,    9) || '00'
       END) subsciber_nbr,
         mb_active.ssn,
         mb_active.name_suffix,
         ms_active.class_x,
         ms_active.aff_nbr,
         ms_active.division_nbr,
       CASE
       WHEN TRIM(ms_active.ymdend) = '99991231' THEN NULL
       ELSE to_char(to_date(ms_active.ymdend,    'YYYYMMDD'),    'MM/DD/YYYY')
       END) actual_ymd_enddt,
       CASE
       WHEN TRIM(ms_active.business_unit) = '01' THEN ms_active.business_unit || '-' || ms_active.prog_nbr
       WHEN TRIM(ms_active.business_unit) = '03' THEN ms_active.business_unit || '-' || ms_active.prog_nbr || '-' || ms_active.carrier
       ELSE NULL
       END) network_id,
         ms_active.business_unit || '-' || ms_active.prog_nbr || '-' || ms_active.carrier insurance_company_code,
          (SELECT DISTINCT(email)
         FROM dbo.av_mem_email
         WHERE dbo.av_mem_email.member_nbr = mb_active.member_nbr
         AND rownum = 1)
      email_id,
         mb_active.lr_response cob_flag,
         mb_active.record_nbr vip_flag,
         ms_active.pre_exist pre_x_flag,
         ms_active.region region,
         ms_active.group_nbr,
       CASE
       WHEN
        (SELECT TRIM(div.div_status)
         FROM division div
         WHERE TRIM(div.division_nbr) = TRIM(ms_active.division_nbr)) = 'NULL' THEN
          'Y'
         ELSE
          'N'
         END)
      non_erisa_status
       FROM member mb_active,
         member_span ms_active
       WHERE mb_active.member_nbr = ms_active.member_nbr
       AND(20090707 BETWEEN ms_active.ymdeff
       AND ms_active.ymdend
       AND TRIM(ms_active.void) IS NULL
    active_members,
        (SELECT DISTINCT(contract.contract_nbr),
         contract.language_x,
         contract_span.corp_nbr
       FROM contract,
         contract_span
       WHERE contract.contract_nbr = contract_span.contract_nbr
       AND(20090707 BETWEEN contract_span.ymdeff
       AND contract_span.ymdend)
       AND TRIM(contract_span.void) IS
      NULL)
    active_contracts
    WHERE TRIM(active_members.contract_nbr) = TRIM(active_contracts.contract_nbr);
    Taking around 6 minute to run and it returns """"268267"""" records
    Explain Plan for the above SQL:
    ===============================
    "PLAN_TABLE_OUTPUT"
    "Plan hash value: 379550299"
    "| Id  | Operation                      | Name          | Rows  | Bytes |TempSpc| Cost (%CPU)| Time     |"
    "|   0 | SELECT STATEMENT               |               |  2609K|   659M|       | 91679   (3)| 00:18:21 |"
    "|   1 |  HASH UNIQUE                   |               |     1 |    16 |       | 54461   (2)| 00:10:54 |"
    "|*  2 |   COUNT STOPKEY                |               |       |       |       |            |          |"
    "|*  3 |    TABLE ACCESS FULL           | MEMBER_SPAN   | 12891 |   201K|       | 54459   (2)| 00:10:54 |"
    "|   4 |    HASH UNIQUE                 |               |     1 |    16 |  2424K| 54736   (2)| 00:10:57 |"
    "|*  5 |     COUNT STOPKEY              |               |       |       |       |            |          |"
    "|*  6 |      TABLE ACCESS FULL         | MEMBER_SPAN   | 51541 |   805K|       | 54459   (2)| 00:10:54 |"
    "|   7 |  HASH UNIQUE                   |               |     1 |    50 |       |    64   (4)| 00:00:01 |"
    "|*  8 |   COUNT STOPKEY                |               |       |       |       |            |          |"
    "|*  9 |    TABLE ACCESS FULL           | AV_MEM_EMAIL  |     1 |    50 |       |    63   (2)| 00:00:01 |"
    "|* 10 |  TABLE ACCESS FULL             | DIVISION      |     1 |    14 |       |     3   (0)| 00:00:01 |"
    "|* 11 |  HASH JOIN                     |               |  2609K|   659M|       | 91679   (3)| 00:18:21 |"
    "|  12 |   VIEW                         |               |   581 | 12782 |       |  8184   (4)| 00:01:39 |"
    "|  13 |    HASH UNIQUE                 |               |   581 | 26145 |       |  8184   (4)| 00:01:39 |"
    "|  14 |     TABLE ACCESS BY INDEX ROWID| CONTRACT      |     1 |    14 |       |     2   (0)| 00:00:01 |"
    "|  15 |      NESTED LOOPS              |               |   581 | 26145 |       |  8183   (4)| 00:01:39 |"
    "|* 16 |       TABLE ACCESS FULL        | CONTRACT_SPAN |   581 | 18011 |       |  7019   (5)| 00:01:25 |"
    "|* 17 |       INDEX RANGE SCAN         | CONTRACT_IX1  |     1 |       |       |     1   (0)| 00:00:01 |"
    "|* 18 |   HASH JOIN                    |               |   449K|   104M|    39M| 83466   (2)| 00:16:42 |"
    "|* 19 |    TABLE ACCESS FULL           | MEMBER_SPAN   |   449K|    34M|       | 54964   (3)| 00:11:00 |"
    "|  20 |    TABLE ACCESS FULL           | MEMBER        |  1436K|   221M|       | 14664   (2)| 00:02:56 |"
    "Predicate Information (identified by operation id):"
    "   2 - filter(ROWNUM=1)"
    "   3 - filter(SUBSTR("MSSP"."MEMBER_NBR",1,9)=SUBSTR(:B1,1,9) AND "MSSP"."CLASS_X"='SP')"
    "   5 - filter(ROWNUM=1)"
    "   6 - filter(SUBSTR("MSSP"."MEMBER_NBR",1,9)=SUBSTR(:B1,1,9) AND "MSSP"."CLASS_X"='SE')"
    "   8 - filter(ROWNUM=1)"
    "   9 - filter("AV_MEM_EMAIL"."MEMBER_NBR"=:B1)"
    "  10 - filter(TRIM("DIV"."DIVISION_NBR")=TRIM(:B1))"
    "  11 - access(TRIM("MB_ACTIVE"."CONTRACT_NBR")=TRIM("ACTIVE_CONTRACTS"."CONTRACT_NBR"))"
    "  16 - filter("CONTRACT_SPAN"."YMDEFF"<=20090707 AND TRIM("CONTRACT_SPAN"."VOID") IS NULL AND "
    "              "CONTRACT_SPAN"."YMDEND">=20090707)"
    "  17 - access("CONTRACT"."CONTRACT_NBR"="CONTRACT_SPAN"."CONTRACT_NBR")"
    "  18 - access("MB_ACTIVE"."MEMBER_NBR"="MS_ACTIVE"."MEMBER_NBR")"
    "  19 - filter(TRIM("MS_ACTIVE"."VOID") IS NULL AND "MS_ACTIVE"."YMDEFF"<=20090707 AND "
    "              "MS_ACTIVE"."YMDEND">=20090707)"
    SAME SQL IN A PROCEDURE..IT IS HANGING UP
    ========================================
    create or replace PROCEDURE TEST_CURRENT_PCP_SPAN is
    EXTRACTED_STRING VARCHAR2(32767);
    FILEHANDLER UTL_FILE.FILE_TYPE;
    test_str varchar2(100);
    pcp_eff_date number(10);
    file_name varchar2(50);
       CURSOR MEMBERS
       IS
    SELECT active_members.member_nbr,
      active_members.name_last,
      active_members.name_first,
      active_members.name_middle,
      active_members.dob,
      active_members.sex,
      active_members.subsciber_nbr,
      active_members.ssn,
      active_members.name_suffix,
      active_members.class_x,
      active_members.aff_nbr,
    CASE
    WHEN TRIM(active_members.class_x) = 'SE' THEN
        (SELECT DISTINCT(mssp.member_nbr)
         FROM member_span mssp
         WHERE SUBSTR(mssp.member_nbr,    1,    9) = SUBSTR(active_members.member_nbr,    1,    9)
         AND mssp.class_x = 'SP'
         AND rownum = 1)
       WHEN TRIM(active_members.class_x) = 'SP' THEN
          (SELECT DISTINCT(mssp.member_nbr)
           FROM member_span mssp
           WHERE SUBSTR(mssp.member_nbr,    1,    9) = SUBSTR(active_members.member_nbr,    1,    9)
           AND mssp.class_x = 'SE'
           AND rownum = 1)
      ELSE
        NULL
       END)
    spouse_member_nbr,
      active_members.division_nbr,
      active_members.ymdeff,
      active_members.ymdend,
      active_members.actual_ymd_enddt,
      active_members.email_id,
      active_members.network_id,
      active_members.insurance_company_code,
      active_members.cob_flag,
      active_members.vip_flag,
      active_members.pre_x_flag,
      active_members.region,
      active_contracts.language_x,
      active_contracts.corp_nbr,
      active_members.group_nbr,
      active_members.non_erisa_status
    FROM
      (SELECT mb_active.member_nbr,
         mb_active.contract_nbr,
         mb_active.name_last,
         mb_active.name_first,
         mb_active.name_middle,
         ms_active.ymdeff,
         ms_active.ymdend,
         to_char(to_date(
       CASE
       WHEN LENGTH(mb_active.ymdbirth) = 8 THEN mb_active.ymdbirth
       ELSE NULL
       END,    'YYYYMMDD'),    'MM/DD/YYYY') dob,
         mb_active.sex,
         to_char(to_date(ms_active.ymdeff,    'YYYYMMDD'),    'MM/DD/YYYY') ymdeff_formatted,
         to_char(to_date(ms_active.ymdend,    'YYYYMMDD'),    'MM/DD/YYYY') ymdend_formatted,
         ms_active.void,
       CASE
       WHEN SUBSTR(mb_active.member_nbr,    10,    2) = '00' THEN mb_active.member_nbr
       ELSE SUBSTR(mb_active.member_nbr,    1,    9) || '00'
       END) subsciber_nbr,
         mb_active.ssn,
         mb_active.name_suffix,
         ms_active.class_x,
         ms_active.aff_nbr,
         ms_active.division_nbr,
       CASE
       WHEN TRIM(ms_active.ymdend) = '99991231' THEN NULL
       ELSE to_char(to_date(ms_active.ymdend,    'YYYYMMDD'),    'MM/DD/YYYY')
       END) actual_ymd_enddt,
       CASE
       WHEN TRIM(ms_active.business_unit) = '01' THEN ms_active.business_unit || '-' || ms_active.prog_nbr
       WHEN TRIM(ms_active.business_unit) = '03' THEN ms_active.business_unit || '-' || ms_active.prog_nbr || '-' || ms_active.carrier
       ELSE NULL
       END) network_id,
         ms_active.business_unit || '-' || ms_active.prog_nbr || '-' || ms_active.carrier insurance_company_code,
          (SELECT DISTINCT(email)
         FROM dbo.av_mem_email
         WHERE dbo.av_mem_email.member_nbr = mb_active.member_nbr
         AND rownum = 1)
      email_id,
         mb_active.lr_response cob_flag,
         mb_active.record_nbr vip_flag,
         ms_active.pre_exist pre_x_flag,
         ms_active.region region,
         ms_active.group_nbr,
       CASE
       WHEN
        (SELECT TRIM(div.div_status)
         FROM division div
         WHERE TRIM(div.division_nbr) = TRIM(ms_active.division_nbr)) = 'NULL' THEN
          'Y'
         ELSE
          'N'
         END)
      non_erisa_status
       FROM member mb_active,
         member_span ms_active
       WHERE mb_active.member_nbr = ms_active.member_nbr
       AND(20090707 BETWEEN ms_active.ymdeff
       AND ms_active.ymdend
       AND TRIM(ms_active.void) IS NULL
    active_members,
        (SELECT DISTINCT(contract.contract_nbr),
         contract.language_x,
         contract_span.corp_nbr
       FROM contract,
         contract_span
       WHERE contract.contract_nbr = contract_span.contract_nbr
       AND(20090707 BETWEEN contract_span.ymdeff
       AND contract_span.ymdend)
       AND TRIM(contract_span.void) IS
      NULL)
    active_contracts
    WHERE TRIM(active_members.contract_nbr) = TRIM(active_contracts.contract_nbr);
      TYPE MEM IS TABLE OF MEMBERS%ROWTYPE INDEX BY PLS_INTEGER;
      TABLE_MEM MEM;
    MEMBER_ADDR   MGONZALEZ.CPKG_UTIL.ADDR;
    BEGIN 
       test_str := '''A10000213'''||','||'''A10000213''';
       insert into test_number_char(str) values ('start time of MEMBER_LOAD_CURRENT_PCP_SPAN '||to_char(sysdate,'MM/DD/YYYY HH24:MI:SS'));
       commit;
       file_name := 'member_load'||to_char(sysdate,'YYYYMMDDHH24MI')||'.txt';
       FILEHANDLER := UTL_FILE.FOPEN('AVMED_UTL_FILE',file_name, 'W',10000);
       insert into test_number_char(str) values ('start time of opening members cursor(before open members command) '||to_char(sysdate,'MM/DD/YYYY HH24:MI:SS'));
       commit;
       OPEN MEMBERS;
    LOOP
          FETCH MEMBERS
             BULK COLLECT INTO TABLE_MEM LIMIT 1000 ;
           EXIT WHEN TABLE_MEM.COUNT = 0;
    insert into test_number_char(str) values ('start time of outer loop '||to_char(sysdate,'MM/DD/YYYY HH24:MI:SS'));
    commit;
          FOR i IN 1 .. TABLE_MEM.COUNT
          LOOP
          EXTRACTED_STRING := TRIM(TABLE_MEM(i).MEMBER_NBR)||'| '||     
                              TRIM(TABLE_MEM(i).NAME_LAST)||'| '||      
                            TRIM(TABLE_MEM(i).NAME_FIRST)||'| '||      
                             TRIM(TABLE_MEM(i).NAME_MIDDLE)||'| '||   
                             TRIM(TABLE_MEM(i).ssn)||'| '||            
                             TABLE_MEM(i).subsciber_nbr||'| '||        
                             TRIM(TABLE_MEM(i).class_x)||'| '||         
                             TRIM(TABLE_MEM(i).DOB)||'| '||             
                             TRIM(TABLE_MEM(i).SEX)||'| ' ;             
              EXTRACTED_STRING   :=
                    EXTRACTED_STRING ||
                  TRIM(TABLE_MEM(i).aff_nbr)||'| '||                         
                                pcp_eff_date||'| '||                 
              TABLE_MEM(i).actual_ymd_enddt||'| '||                        
                  TRIM(TABLE_MEM(i).division_nbr)||'| '||                    
                  ' '||'| '||                                               
                  ' '||'| '||                                                  
                  ' '||'| '||                                                 
                  TABLE_MEM(i).network_id||'| '||                              
                  ' '||'| '||                                                  
                  ' '||'| '||                                                  
                  ' '||'| '||                                                  
                  ' '||'| '||                                                 
                  ' '||'| '||                                                  
                 TRIM(TABLE_MEM(i).name_suffix)||'| '||                       
                 ' '||'| '||                                                   
                 TRIM(TABLE_MEM(i).spouse_member_nbr)||'| '||                  
                 ' '||'| '||                                                   
                 ' '||'| '||                                                   
                 ' '||'| '||                                                  
                 ' '||'| '||                                                   
                 ' '||'| '||                                                  
                 ' '||'| '||                                                   
                 ' '||'| '||                                                   
                 ' '||'| '||                                                   
                 ' '||'| '||                                                   
                 ' '||'| '||                                                   
                 ' '||'| '||                                                   
                 ' '||'| '||                                                  
                 ' '||'| '||                                                   
                TRIM(TABLE_MEM(i).email_id)||'| '||                                
                TABLE_MEM(i).Insurance_company_code||'| '||                    
                TABLE_MEM(i).group_nbr||'| '||                                 
                TABLE_MEM(i).language_x||'| '||                               
                TABLE_MEM(i).region||'| '||                                    
                TABLE_MEM(i).corp_nbr||'| '||                                  
                TABLE_MEM(i).non_erisa_status||'| '||                          
                TABLE_MEM(i).cob_flag||'| '||                                  
                TABLE_MEM(i).pre_x_flag||'| '||                                
                TABLE_MEM(i).vip_flag                                       
                 EXTRACTED_STRING   := rtrim(EXTRACTED_STRING,' ');
            UTL_FILE.PUT_LINE(FILEHANDLER,EXTRACTED_STRING,TRUE);
            EXTRACTED_STRING := NULL;
            pcp_eff_date := NULL;
          END LOOP;
          insert into test_number_char(str) values ('end time of outer loop '||to_char(sysdate,'MM/DD/YYYY HH24:MI:SS'));
    commit;
    END LOOP;
    close members;
    insert into test_number_char(str) values ('end time of opening members cursor '||to_char(sysdate,'MM/DD/YYYY HH24:MI:SS'));
    commit;
    commit;
       UTL_FILE.FCLOSE(FILEHANDLER);
       insert into test_number_char(str) values ('End time of MEMBER_LOAD_CURRENT_PCP_SPAN '||to_char(sysdate,'MM/DD/YYYY HH24:MI:SS'));
       commit;
       EXCEPTION
          WHEN OTHERS
          THEN
             DBMS_OUTPUT.put_line(   'ERROR getting members '
                                  || SQLCODE
                                  || ' '
                                  || SQLERRM);
    END ;
    In my Test table which i am inserting to check the times...
    I am geting on these 2 records after that it hangs up...
    start time of MEMBER_LOAD_CURRENT_PCP_SPAN 07/08/2009 11:41:21
    start time of opening members cursor(before open members command) 07/08/2009 11:41:21I have to call some other functions for each member to get additional details thats the reason i am going for Procedure.Instead it is just a simple SQL
    Thanks in advance

    It is taking lot of timeYou could perhaps split it up in smaller, isolated parts.
    Running certain steps separate.
    ..is it possible to find out the issues without running the proc?Other than have other people on OTN give their ideas/share experiences?
    Not that I'm aware of.
    There are lots of statistical views, you might be able to deduct from their data, but I personally prefer running the procedure and just trace it. But I'm always willing to learn new approaches, btw.
    Still, you have 2 things to look at, at least:
    - avoid loops in loops if possible
    - check your predicates, if you apply a function, you lose the index, unless you create a function based index.
    edit
    One more thing (how could I overlook that):
    You commit your instrumentation code ( insert into test_number_char(str) ) IN the loop.
    Please remove commit in your loops...
    Commit only once, at the end of your transaction.
    Never commit in a loop.
    (Preferrably the client commits)
    And remove every commit in your loop...
    Edited by: hoek on Jul 8, 2009 8:03 PM

  • Itunes wont open. itunes has stopped working message Please help!!

    I had itune 10.1 working just normal, and suddenly it wont open. 
      even before that, 1st problem i had  was with Quick time, i couldnt uninstall it, kept saying newer version of Quick time installed..or something like that. and i figured out to install itunes without unstalling quick time. (thanks to Google) and was working fine for a month, and suddenly, now iTune wont open. I tried unstalling it, and reinstalled... that's pretty much i can do now!!  still no hope!! (btw, I use Vista, 32bit!) Please help me... here's what Problem report shows..
      " stopped working"  
    Problem Event Name:
    BEX
    Application Name:
    iTunes.exe
    Application Version:
    10.6.1.7
    Application Timestamp:
    4f71aced
    Fault Module Name:
    cryptdlg.dll_unloaded
    Fault Module Version:
    0.0.0.0
    Fault Module Timestamp:
    4549bd25
    Exception Offset:
    69431040
    Exception Code:
    c0000005
    Exception Data:
    00000008
    OS Version:
    6.0.6002.2.2.0.768.3
    Locale ID:
    1033
    Additional Information 1:
    fd00
    Additional Information 2:
    ea6f5fe8924aaa756324d57f87834160
    Additional Information 3:
    fd00
    Additional Information 4:
    ea6f5fe8924aaa756324d57f87834160
    and another report: "stopped responding and was closed"
    Description
             A problem caused this program to stop interacting with Windows.
    Problem signature
    Problem Event Name:    AppHangB1
    Application Name:    iTunes.exe
    Application Version:    10.5.0.142
    Application Timestamp:    4e9243f2
    Hang Signature:    6a2d
    Hang Type:    2048
    OS Version:    6.0.6002.2.2.0.768.3
    Locale ID:    1033
    Additional Hang Signature 1:    579344e9ab62a3902d6e00f558f404ca
    Additional Hang Signature 2:    1748
    Additional Hang Signature 3:    8fb4784d6c7db48473361b5a4e821ea6
    Additional Hang Signature 4:    6a2d
    Additional Hang Signature 5:    579344e9ab62a3902d6e00f558f404ca
    Additional Hang Signature 6:    1748
    Additional Hang Signature 7:    8fb4784d6c7db48473361b5a4e821ea6
    PLEASE HELP ME.....  MUCHO GRASSYASS!      

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    Click the Clear Display icon in the toolbar. Then take the action that isn't working the way you expect. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name or email address, may appear in the log. Anonymize before posting.

  • Please help me!!!! my macbook pro 15 running on mountain lion is hanging a lot...sometimes when i use any app than it get freeze for some seconds...what should i do?

    please help me!!!! my macbook pro 15 running on mountain lion is hanging a lot...sometimes when i use any app than it get freeze for some seconds...what should i do?

    Hardware Information:
              MacBook Pro - model: MacBookPro8,2
              1 2.2 GHz Intel Core i7 CPU: 4 cores
              4 GB RAM
    System Software:
              OS X 10.8.2 (12C60) - Uptime: 0 days 1:17
    Disk Information:
              TOSHIBA MK5065GSXF disk0 : (500.11 GB)
                        disk0s1 (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) /: 499.25 GB (424.92 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              HL-DT-ST DVDRW  GS31N 
    USB Information:
              Apple Inc. BRCM2070 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Inc. Apple Internal Keyboard / Trackpad
              Apple Inc. FaceTime HD Camera (Built-in)
              Apple Computer, Inc. IR Receiver
    FireWire Information:
    Kernel Extensions:
    Problem System Launch Daemons:
                     [failed] com.apple.coresymbolicationd.plist
    Problem System Launch Agents:
                     [failed] com.apple.afpstat.plist
                     [failed] com.apple.AirPlayUIAgent.plist
                     [failed] com.apple.coreservices.appleid.authentication.plist
                     [failed] com.apple.rcd.plist
    Launch Daemons:
                     [loaded] com.adobe.fpsaud.plist
                     [loaded] com.adobe.SwitchBoard.plist
                     [loaded] com.google.keystone.daemon.plist
                     [loaded] com.microsoft.office.licensing.helper.plist
    Launch Agents:
                     [loaded] com.adobe.CS5ServiceManager.plist
                     [loaded] com.google.keystone.agent.plist
    User Launch Agents:
                     [loaded] com.adobe.ARM.202f4087f2bbde52e3ac2df389f53a4f123223c9cc56a8fd83a6f7ae.plist
                     [loaded] com.facebook.videochat.Akshay.plist
                     [loaded] com.microsoft.LaunchAgent.SyncServicesAgent.plist
    User Login Items:
              Sony Ericsson Bridge Helper
              BitTorrent
              uTorrent
    3rd Party Preference Panes:
              Flash Player
              Java
    Internet Plug-ins:
              AdobePDFViewer.plugin
              AdobePDFViewerNPAPI.plugin
              Flash Player.plugin
              FlashPlayer-10.6.plugin
              googletalkbrowserplugin.plugin
              JavaAppletPlugin.plugin
              npgtpo3dautoplugin.plugin
              QuickTime Plugin.plugin
              SharePointBrowserPlugin.plugin
    User Internet Plug-ins:
              Google Earth Web Plug-in.plugin
              Picasa.plugin
    Bad Fonts:
              None
    Top Processes:
              14.6  %          WindowServer
              6.9   %          coreaudiod
              6.4   %          uTorrent
              1.9   %          WebProcess
              1.4   %          iTunes
              1.2   %          EtreCheck
              0.5   %          fontd
              0.2   %          NotificationCenter
              0.1   %          Dock
              0.0   %          Microsoft

  • My Macbook Pro 2010 model is hanging constantly. Please Help

    Well, i have Macbook pro 2010 model. Since yesterday it is hanging and has becoming frealing slow. I have cleared the memory, deleted unnecessary apps & files. Still no improvement. Please help!!

    Hi AbhiKRajput,
    Thanks for visiting Apple Support Communities.
    You may find thr steps in this guide helpful with resolving the performance issues you're seeing:
    Mac OS X: How to troubleshoot a software issue
    http://support.apple.com/kb/HT1199
    Cheers,
    Jeremy

  • I can't back up my iPhone4.  When was I syncing, My computer hang. I restart computer. Itune told me there is an error, delete the back up file and try again. But there are no back up file to delete in preference-device. Please help!

    I can't back up my iPhone4.  When was I syncing, My computer hang. I restart computer. Itune told me there is an error, delete the back up file and try again. But there are no back up file to delete in preference-device. Please help!

    Thank you for answering my question. If I reinstall itune, is it mean that I need to install music, apps, video...everything in itune again? also intall everything in my iphone again?

  • Computer Hangs for 30 Seconds at a time. Please Help!!

    My Macbook Pro has started locking up for 30 seconds at a time on fairly regular intervals (Every 2 - 10 min). When the lockup happens, it appears to affect anything that wants to use the hard drive. For instance, my browser will hang (i.e. do the beachball) but skype will work fine. During the hang, if I bring up any other application, it will hang if it tries to access the HD. I am not totally sure its the HD, but this is what I suspect as other background processes can continue during the lockup. It's important to note, that during these times, it is NOT using the CPU or the hard drive. It just sits there doing nothing. I do not hear the hard drive access going crazy. I also have 4GB of ram and it happens when almost nothing is open so it is not a performance problem.
    Here is what I have already tried
    - Disabling the SMS (sudden motion sensor)
    - Repairing the disk permissions
    - Verifying and repairing the disk
    - Using disk warrior boot disk to repair the disk
    - Downgrading from the 1.7 to the 1.6 EFI Firmware
    Please help. I'm out of ideas.
    Thanks,
    David

    I'm in the same boat, and I can't just replace my HDD..... I'm going to try and use my copy of TechTools plus to see if it spots the issue...
    Recently I have had that 5-10 second slowdown. I thought it was one of my externals because at the time of the slowdown, I'd hear teh external start to spin. It was a 1TB drive, and I passed it off as nothing because I thought thats what 1TB USB drive need to error check.
    Then, all of a sudden after taking my computer out of sleep mode (with no externals connected) my computer came to a standstill... I reinstalled OSx 10.6 and it was fine.
    Now I am noticing a 10 second halt at regular intervals as the OP mentioned. In my console it has this:
    12/31/10 4:53:28 PM kernel commaxtor_IOPowSec00_105-(B41VR3WH) handling stop request
    12/31/10 4:53:28 PM kernel commaxtor_IOPowSec00_105-(B41VR3WH) IssueModeSelectTimer: shortTime = 1
    12/31/10 4:53:28 PM kernel commaxtor_IOPowSec00_105-(B41VR3WH)::SetModeSelectTimer: using shortime
    12/31/10 4:53:28 PM kernel commaxtor_IOPowSec00_105-(B41VR3WH) IssueModeSelectTimer: complete
    12/31/10 4:53:28 PM kernel commaxtor_IOPowSec00_105-(B41VR3WH): IssueStopUnderDeviceControlCommand
    12/31/10 4:53:57 PM kernel disk0s2: I/O error.
    12/31/10 4:53:57 PM kernel
    12/31/10 4:53:57 PM kernel
    12/31/10 4:53:57 PM kernel hfs_clonefile: cluster_read failed - 5
    Looking at this, I am now assuming that the problem lies with my external maxtor drive...
    LUCKILY all of my info on my macbook is on another HD for time machine, so if my internal HD kicks the bucket, I'm safe. It's the maxtor one I'm worried about since it has my whole video production portfolio on it, lol.

Maybe you are looking for

  • Cannot reinstall mac osx 10.5.6

    Hey guys, I am having a problem reformatting my iMac. I am currently running 10.5.8 on my computer. I inserted the mac osx 10.5.6 install dvd and restarted my computer, holding down the c button until the install screen appeared. After choosing the l

  • Firefox 3 displays the php code when pages launched from dreamweaver 8

    The problem seems to relate to files opening as - file:///C:/localweb/ .... when sent from Dreamweaver 8.0 to Firefox The first html/php page loads correctly from dreamweaver as processed HTML, a second page linked from either an HTML or php page als

  • Payment Terms for Credit memos

    Hi, Please explain to me what is the significance of payment terms in credit memo. I understand that credit memo are sort of returns (sales returns or purchase returns). I am able to understand the payment terms for an invoice (which would determine

  • JNI with Fortran (and C)

    Has anyone tried this example: http://www.csharp.com/javacfort.html Im having trouble creating the .dll for the C code and Fortran code in Visual C++. any ideas? Thanks.

  • How to create Hyperlink dynamically

    Hi All, In my application , iam using one table , one of the field in that table is input field, when i entered data in that field at runtime, automatically that field value should become hyperlink, to show another table. is it possible to do, if pos