When patching, decide on how many CPUs

When deciding on your worker processes, you must know how many CPUs you have then "add two"
On Linux:
cat /proc/cpuinfo | grep processor | wc -l
8
This is the "number of CPUs"
To get the number of "cores"
grep "^core id" /proc/cpuinfo | sort -u | wc -l
4
To get the number of "physical CPUs"
grep "^physical id" /proc/cpuinfo | sort -u | wc -l
1
So, how many CPUs are we using?
I would like to best utlilize resources for an upcoming patch session, and the CPU question has always been a grey area for me...
Thanks
11.5.10.2
Linux Red Hat 5
11.2.0.3
DA

Hi Dan,
Workers should be twice the number of processors available in the server during the patching process, and the workload is distributed amongst workers and Oracle take cares of it.
Please refer ntoe:
How To Select Number of Workers Based on Number of CPUs When Running ADPATCH (Doc ID 226191.1)
Hope this helps!!!
Best Regards

Similar Messages

  • How many cpus on server are allocated to client

    hello,
    its not an issue rather doubt which is hunting me from last 2-3 days.
    My 10gR2 Oracle database running on
    Widows server 2008 R2 Enterprise
    Processor ----> intel Xeon cpu [email protected] GHz (4 processor)
    RAM------>8GB
    its a dedicated server.
    Actually i was going through the AWR report whn one of the client came to me with slow database performance during some time interval.
    when i had a look at the Top 5 Timed Events in Report it showed me the
    Sql*net message from client      834.35si told them to run their query so that i can have trace of that.
    then time event showed me something nearer to above and our database was taking only 15 sec to carry out the task.
    i told them that
    "you application/client is taking 834 sec to tell our database to do something.But once the database got your application's request to carry out something, the database is taking only 15 sec to provide you with the result"
    so they asked me to justify that the problem is with application side/machine side.
    After digging in a lot on the internet ground, chatting with my colleges on cell phone and running through many threads specially Asktom.oracle.com, i got really confused.
    They came up with varied opinions which kept me thinking again & again over the same thing.
    In one of his(Thomas kyte) thread the discussion was as follows.
    The output of tkprof when the developers run the same program on their PC shows a big difference in
    SQL*Net message from client.
    The SQL*Net message from client from my tkprof is almost 4-5 times theirs.
    Could you please advise what might be the cause of that?
    Thanks
    Followup   August 25, 2009 - 9am Central time zone:
    that could mean.....
    your machine is slow (their desktop cpus blow your server cpus away) as much as anything.
    since their code is not instrumented, try SQL*Net trace (with TIMESTAMPS) can be helpful to check out the time in the network between the client and server. See Note 16658.1 - see if you experience radically different response times on the various machines.
    4 stars   August 25, 2009 - 2pm Central time zone
    Bookmark | Bottom | Top
    Reviewer: Jaklin Ekdawi
    My Database server is T5120 with 4 core 1.2 GHz Ultra SPARC T2 processor (from O/S it is seen as 32
    CPU * 1.2 GHz).
    Their PC has 2 CPU * 4 Ghz.
    Based on the above, How come their PC is more powerful than my server?
    The ASH Report for the execution period of the program shows ¿CPU + Wait for CPU¿ is the top event,
    however, tkprof shows ¿SQL*Net from client¿ is the top event waited on.
    Top User Events
    Event        Event Class    % Activity    Avg Active Sessions
    CPU + Wait for CPU     CPU             81.66        0.14
    log file sync             Commit             5.92        0.01
    db file scattered read     User I/O     2.37        0.00
    Can you please explain why there is a difference between tkprof and ASH report?
    Thank You
    Followup   August 25, 2009 - 8pm Central time zone:
    I only care about a single cpu, your client program is not using more than one.
    I often downloaded stuff from my big bad sparc to my desktop because my desktop was many times faster than the sparc.
    look further down in the ash report - sqlnet message from client is an idle wait, we tend to ignore it as it is the time we spent WAITING FOR THE CLIENT.
    Their pc looks a lot faster than your server since you are only using a single cpu - your client is not multi-process. It only uses a single cpu.
    4 stars   August 25, 2009 - 2pm Central time zone
    Bookmark | Bottom | Top
    Reviewer: Jaklin Ekdawi
    Sorry, I forgot to say that during the execution time the cpu on the server was 98-99% idle based
    on (using top and sar).
    Thanks
    Followup   August 25, 2009 - 8pm Central time zone:
    I agree, because you could not use 31 out of 32 cpus, I would expect it to be almost idle.
    97% idle would mean a single cpu was 100% used. So, it sounds like you were using almost 100% of that single cpu you had access to.
    and it isn't as fast as their pc.
    4 stars   August 25, 2009 - 10pm Central time zone
    Bookmark | Bottom | Top
    Reviewer: Jaklin Ekdawi
    The tkprof from the developer's PC is below
    OVERALL TOTALS FOR ALL NON-RECURSIVE STATEMENTS
    call     count       cpu    elapsed       disk      query    current        rows
    Parse      122      0.39       0.68          0        403          0           0
    Execute    122      0.00       0.00          0          0          0           0
    Fetch      396      0.09       0.11          0      25354          0         274
    total      640      0.48       0.80          0      25757          0         274
    Misses in library cache during parse: 122
    Elapsed times include waiting on following events:
      Event waited on                             Times   Max. Wait  Total Waited
      ----------------------------------------   Waited  ----------  ------------
      SQL*Net message to client                     763        0.00          0.00
      SQL*Net message from client                   763       14.71        312.91
      SQL*Net more data to client                   122        0.00          0.00
    The tkprof for the running the same process on Solaris DB Server
    OVERALL TOTALS FOR ALL NON-RECURSIVE STATEMENTS
    call     count       cpu    elapsed       disk      query    current        rows
    Parse      124      0.06       0.03          0          0          0           0
    Execute    124      0.04       0.01          0          0          0           0
    Fetch      400      0.07       0.10          0        802          0         276
    total      648      0.17       0.15          0        802          0         276
    Misses in library cache during parse: 1
    Elapsed times include waiting on following events:
      Event waited on                             Times   Max. Wait  Total Waited
      ----------------------------------------   Waited  ----------  ------------
      SQL*Net message to client                     774        0.00          0.00
      SQL*Net message from client                   774       43.65        964.23
    - On Solaris DB server, the CPU is 0.17, however, "SQL*Net message from client" is 964.23.
    - On the developer¿s PC, the CPU is 0.48, however, "SQL*Net message from client" is 312.91.
    Based on that, how I can approve it is CPU issue?
    Followup   August 26, 2009 - 7pm Central time zone:
    how about this.
    have the developers write something that mimics what they do without the database in it. Same sorts of loops and processing they do in the code in the client.
    run it on their machine
    run it on yours
    You'll find your big bad server has cpu's that are extremely slow compared to the desktop machine.
    Hence - the time spent waiting for sqlnet message from client is - time spent in YOUR client on YOUR server processing the data returned from the database.
    saying "the cpu 0.17 on one and 0.48 on the other" is meaningless, they are completely different cpus with completely different performance characteristics.
    And that you have 32 of them - no use to you, you use one..
    It looks like your server is about 2-3 times slower then their test machine.
    5 stars SQL*Net Message from client may not be an issue from the app   May 28, 2010 - 8am Central time zone
    Bookmark | Bottom | Top
    Reviewer: Thierry B from Paris, France
    Hi,
    I just read your post as I experienced the exact same problem. I found something that fixed this
    problem for me, my sqlnet.ora contained that line after an oracle upgrade:
    TRACE_LEVEL_CLIENT=16
    I don't know how it came there. But it was the cause of my problem (too long idle time). I simply
    removed it and no more wait events.
    I hope it can be of any help for anyone.
    Followup   May 28, 2010 - 8am Central time zone:
    that is a client side issue though, isn't it. It is an application side issue, not a database side issue.
    5 stars   April 15, 2011 - 10am Central time zone
    Bookmark | Bottom | Top
    Reviewer: A reader in this thread Tom insisted that the client has access to only 1 CPU on the server even though the questioner told him that his machine is having around 32 CPU'S.
    so this thread was the source of my confusion.
    i kept asking myself "if the client application has access to one cpu out of 32 cpu's on the server on which the database server is running,then What is the use of multiprocessor? my oracle/client application has access to only one cpu on the server(like Tom said), what other 31 cpu's on the server machine are upto?if one cpu is getting exhausted by the client Application request, then what the other processor are doing ? are they not meant for load balancing?"
    when i had a chat on cell phone with my colleagues regarding the oracle access to the cpu's on the server, then they told me that if there are more number of cpu's then the the response time would be fast cause workload is divided among the multiple processor to carry out the task in parallel.
    Again i got confused with the deferring opinion..
    so just want to have clarification on
    * how many processes do i have access to on server machine where my oracle is installed?*
    how many processes do the client applicaiton S/W/client machine have access to out of 32 processors?
    is workload devided among the cpus on the server ,in case of huge request from the client application?
    thanks & i hope my doubt would be cleared

    Look at it in basic terms (forgetting for the moment about Oracle and SQL*Net and specific s/w itself).
    A process is loaded into memory. This process contains machine code instructions. How many CPUs can execute these instructions?
    Only 1.
    Simplistically. The process has a single execution pointer and set of CPU registers. A single CPU executes the instruction (as indicated by the execution pointer). The registers are used and updated.
    The same CPU may not be used each time around. So a single process can during its lifetime, be executed by a number of CPUs. But a single CPU at a time.
    A process can thread. This basically means that a second copy of the execution pointer and registers set are created. Each such copy will be executed by by a single CPU at a time.
    An Oracle client is serviced by an Oracle server process (either dedicated or shared). On Linux/Unix systems, this will be a unique physical process. On Windows, it will be a unique thread.
    This process is executed by a single CPU. Thus that client is serviced by a single CPU.
    This changes when Oracle can use parallel processing and there are PX slave processes available. In that case, the client is serviced by a single process - but that process has in turn enlisted the assistance of helper processes. Thus the client is now serviced by multiple processes (or threads on Windows) and thus by multiple CPUs.
    However, it is not that simple either. It is "cheaper" for the kernel to run threads on the same CPU than on different CPUs. The reason is the same memory is used by both and access to that memory by different CPUs is more complex (and thus more expensive and slower) than from the same CPU.
    So depending on a number of factors, that client may still be serviced by a single CPU despite the fact that PX slaves are used. And from a client process perspective, this does not really matter. The crux of the issue in this regard is the CPU utilisation/footprint of that client process on the server.
    If the clock time for a client process says "+running for 60s+" and the server says "+CPU time is 10s+", you cannot say that the process was not serviced by multiple CPUs. You do not know whether than 10s CPU time was for 5 processes each spending 2s to service that client.
    However, when the server says "+CPU time is 70s+" - a longer period that the wall clock time of the client, then it is reasonable to assume that multiple server processes (and thus CPUs) are servicing that client process.
    As for exactly how many CPUs are in fact used by the server? That has no real bearing on this. It does not change client-server behaviour.
    Even Oracle does not know and does not care which CPU is servicing it. The correct piece of s/w to deal with that, is the kernel. Yes, you can bind a thread or process to a specific server CPU, but the reasons for this is quite technical and is always an exception. Let the kernel deal with which CPU to use. It is of no concern to the server s/w (like Oracle), and even less to the client process being serviced by that server s/w.

  • How many CPUs are supported buying software via MacApp Store?

    I am not sure how many CPUs are supported when I buy a software via MacApp Store.  Who makes the rule?
    The MacApp Store or the developer/software company?
    i.e. when it comes out I like to buy Final Cut Pro X but I have no clue on how many computers I can use it.
    Greetings from Germnay
    mikefromberlin

    A notable thing of the Mac App Store is that it is built on trust, there seems to be no check on how many machines you have installed an app, so they trust you to install it only on your computers.
    True. And the license says computers that you own or control, so one can also use the apps on a Mac that was issued for use from an employer or educational institution, but that one may not actually own.
    What is with the paraquas? It has not rained here in months!

  • When ordering a movie how many megabites does each movie use in my internet downloads

    when ordering a movie how many megabites does each movie use in my internet downloads

    Peter Hillman wrote:
    It doesn't really matter if an AppleTV2 has to re-download since using the same bandwidth twice doesn't effect the user.  There are no data caps on home internet like there are on 3G cellular service.
    Many home internet services do have caps, at least in the UK, and I suspect elsewhere to.  My current service is capped at 100GB/month for downloads, though I rarely use that much. 
    I recall a post from someone a few months ago who said that during the course of watching/rewatching a single HD rental they'd used over 20GB of their monthly usage allocation which is a significant chunk if you do have a cap.
    AC

  • How to find out how many CPUs are required from SAPs

    Hi,
    I am trying to do sizing for SRM product.
    Now questions is
    1> How to determine no.of CPUs , kind of CPUs freq. etc from SAPS.
    Is there any formula for it?
    Even we ask this to hardware vendor, will verndor be aware of SAPS. How can vendor relate CPU details to SAPS?
    Best Regards,
    Tushar

    Hello Tusher,
    > How to determine no.of CPUs , kind of CPUs freq. etc from SAPS.
    The SAPs is determined by running the SAP SD benchmark. At the end of this benchmark you will get a value of SAPs and could determine the SAPs for each core. So you need to specify how many SAPs you will need and the hardware vendor can configure you a server environment, that is possible to handle your requests.
    > Even we ask this to hardware vendor, will verndor be aware of SAPS. How can vendor relate CPU details to SAPS?
    For sure .. if it isn't .. go away and search for another.
    Regards
    Stefan

  • When upgrading to LR5, how many license do I get?

    I recently upgraded through Adobe to LR5. How many license do I get?

    So unlike buying a brand new program you get two, you have to purchase two upgrades? Is the that correct?
    Probably makes better sense to join the creative cloud?
    thanks for taking the time to respond
    SF

  • How many cpus can fce use?

    Hi there,
    I'm starting to digg into video editing, having 650 GB of DV material under iMovie08 for cutting raw and exporting to FCE.
    But I'm fed up with external drives and intend to get one of those nice new MacPro's.
    Now the catch : Does FCE make use of octo-core? If not, is a single-cpu (quad-core) MacPro sufficient?
    Can FCE make use of a better graphics accelerator (8800GT insteda of base graphics card)?
    What disk-layout is best, when there are 4 bays available in a MacPro?
    Hope anyone can answer, so I can judge this investment well
    thanx in advance,
    desmoj

    FCE will run perfectly well even on a 1.25GHz G4, so you shouldn't sweat it running on a brand new MacPro quadcore. Here are the FCE Tech Specs. The differences in performance are primarily in the number of RT effects you can see at one time and some improvement in rendering & exporting 'speed'. But as you go upscale there is a decreasing incremental benefit and it is possible to 'over buy' if you know what I mean. The single quad-core will give you great performance as long as you put 2-4 GB RAM in your new Mac Pro.
    As you probably already know video uses disk space with a vengeance. And this is one place where the new Mac Pros shine. I'd suggest putting in as many and as big hard drives as you can afford. Put in at least two drives - one for your system and one for your scratch disk. If you want to save some money, the second drive doesn't have to be an Apple drive - I'd suggest a Seagate 7200.11 or a WD SE16 SATA drive. (See newegg.com or OWC for drives.) Going with the internal SATA drives will give you a real boost in performance compared to using your external FW drives.

  • How to show the status for all CPU? Solaris 9 & 10 can support how many CPU

    Hi, may i know wat is the command to show all of the CPU status? i tried use "top" command, but could show all. Any Idea?
    And somemore, may I know Solaris 9 and 10 can support how many CPUs?
    thanks
    regards
    raymond

    What do you mean all of the CPU status?
    top shows you processes on all processors and for the currently running processes, it shows you which CPU a process is on.
    If you want separate stats for each processor, "mpstat 5" shows cpu usage and idle etc.
    As far as how many CPU's solaris supports.
    The largest machine Sun sells as far as I am aware is a E25K with 72 dual core CPU's
    for 144 cores. Is that big enough for you? You probably don't want to know the price though :-).

  • How do I kow how many computers are sharing my airport?

    Is there a way to know (from my mac) how many computers are connected and when? I mean how many are using the internet connection, via airport, at a given time? Thanks.. Seba

    This might depend a bit on the configuration of your airport network.
    I just bought a TimeCapsule, and was pleased to find that using Airport Utility 5.3.2, it actually tells you how many wireless clients are connected. To find that, I selected the TC in the utility, and then selected manual setup, and on the Summary tab, right below Channel, the number of Wireless Clients is listed.
    This also seems to work the same with my older (not 802.11n) Airport Extreme base station (AEBS), but might not work with older airport devices.

  • How many iphone 4's will each store have on 6/24?

    Just wondering because I preordered mine at best buy on 6/15 and the store clerk told me I was preorder #15. Do you think I will receive my phone on 6/24? Any info on how many iphones each store will have?
    I figure I should be okay, since half of those 15 are probably for the 16gb and some white models. I ordered the black 32gb. Just figured I'd ask.

    I figured nobody would really know for sure. I'm wondering if anyone remembers how many 3g's were available in-store on launch day last year. It would provide an estimation for this year I guess.
    I figure I should be able to pick up my phone on 6/24. Best Buy should carry at least 20-30 one would think.(I'm #15)
    There are a bunch of walmarts, best buys, an at&t and apple store with 15 miles of my house. I'm not sure if this is a good thing or bad when it comes to how many iphones will be available in each store.

  • HT4059 When I try to load an ePub book it says out of memory.  How many books can you read at one time?

    When I try to load a second book it says out of memory.  How many books can be read at one time?

    Thank you so much...
    1. I don't have that fat format I checked as I saw this on another answer...BUT...you are right the project was very bloated and I made a new project with the sequence and moved a bunch of projects off to an outside drive and things are flying again...this effect "twirl" was on three clips and this seemed to be creating a problem along with it being a bloated project. Don't know why this effect renders easily then the next second doesn't it's on three clips on the entire project and one or another might not render all of a sudden.
    2. I understand what you said about the timeline export...I decided to export the sequence without the matte it was nested in and that sequence did have the chapter markers on the timeline and they again didn't export??? I'll look tomorrow at this it makes no sense if what you're saying is how to do it...the final cut pro book said they should have showed up if I export from the browser and that didn't work either.
    3. I then matted that output and rendered it to output but I am worried this will degrade and compress the sequence more than I want by outputting the same sequence with current settings twice???...the couple of outputs I could make nested looked very good as this was one render...however, I tried doing a quicktime "current settings" with the dvd studio pro info still trying to export chapter markers and maybe it's my imagination but the output didn't look as sharp as just an output with just chapter markers???
    r. I did look at the final cut pro book and it says that mpeg 2 movies will not read chapter markers anyway if you create one in compressor...if this is true it makes no difference if the quicktime output isn't having chapter markers show up. I assume when I go to author though I can put an mpeg 2 movie into dvd studio pro and create chapter markers at that point!! It seems weird it says it can do it with an mpeg 1 but not an mpeg 2 when everyone is using that for dvds.

  • How can I check how many times or when an app has been re-downloaded on my iphone

    How can I check how many times or when an app has been re-downloaded on my iphone. I know how to check purchases but I am looking for how to check when an app had been re-downloaded on my device whether it's through my device or Apple ID

    You mention "lack of control" several times.  The control is there - you control the Apple ID and password that owns the app.  No other Apple ID can use the app.  You have not shared your Apple ID or password with anyone, so you and only you own the app.
    Therefore, the number of times the app is downloaded or re-downloaded is completely irrelevant.  You might, for example, decide to purchase a new iPhone or iPad and download the app there.  Or the app developer may issue a new version which you download.  None of this matters regarding your "control" of the app.  All that matters is that you own it and nobody else can use it.

  • How many Win 7 x64 Critical Patches for Sept 2012?

    Hi,
    How many Windows 7 SP1 x64 Critical Patches released by Novell for ZPM?
    We only see 2? Is that what others seeing or is something wrong on our system we did do a rest few day ago that also disabled all patches. Did anyone one else had similar experience when they did rest ZPM it hindes all patches?
    Kuru

    I have quite a few including the mentioned KB2736233(Recommended). Check to
    see how you are viewing the patches patched/not patched etc.
    MS12-063 Cumulative Security Update for Internet Explorer 7 for Windows XP
    (KB2744842)
    MS12-063 Cumulative Security Update for Internet Explorer 8 for Windows XP
    (KB2744842)
    MS12-063 Cumulative Security Update for Internet Explorer 9 for Windows
    Server 2008 R2 x64 (KB2744842)
    MS12-063 Cumulative Security Update for Internet Explorer 9 for Windows 7
    x64 (KB2744842)
    MS12-063 Cumulative Security Update for Internet Explorer 8 for Windows 7
    x64 (KB2744842)
    MS 2757760 Workaround for Vulnerability in Internet Explorer (Disabled) (See
    Notes)
    MS 2757760 Workaround for Vulnerability in Internet Explorer (Enabled) (See
    Notes)
    MS 982726 Outlook 2010 Junk E-mail Filter Update (September 2012) (All
    Languages)
    MS 2687407 Outlook 2007 Junk E-mail Filter Update (September 2012) (All
    Languages)
    Update Rollup for ActiveX Killbits for Windows XP (KB2736233)
    MS 2736233 Update Rollup for ActiveX Killbits for Windows 7 and Windows
    Server 2008 R2 (September 11, 2012)
    Windows Malicious Software Removal Tool - September 2012 (KB890830)
    Windows Malicious Software Removal Tool x64 - September 2012 (KB890830)
    Windows Defender Antispyware DAT Files 1.137.101.0 (September 20, 2012) (Rev
    2)
    Jim Koerner
    Server - ZCM 11.2.1 w/MU2 and Internal Database on Win2008R2x64
    Client - ZCM 11.2.1 w/MU2 on Win7SP1x64
    "Massimo Rosen" <[email protected]> wrote in message
    news:[email protected]...
    > On 26.09.2012 11:26, Shaun Pond wrote:
    >> Eumetsatzcm,
    >>
    >> I see 2
    >> MS12-063 Cumulative Security Update for Internet Explorer 8 for Windows 7
    >> x64 (KB2744842)
    >> MS12-063 Cumulative Security Update for Internet Explorer 9 for Windows 7
    >> x64 (KB2744842)
    >>
    >
    > Well, in that case indeed one is missing. Above is technically one update
    > (see identical KB Number). What's missing at least is the Updaterollup for
    > ActiveX Killbits, (KB2736233), released September 12th.
    >
    > http://technet.microsoft.com/en-us/s...visory/2736233
    >
    > There were other patches released this month, but those aren't critical
    > security patches. I'm not sure if ZPM is supposed to contain them or not.
    > Above one however needs to be there.
    >
    > CU,
    > --
    > Massimo Rosen
    > Novell Knowledge Partner
    > No emails please!
    > http://www.cfc-it.de

  • How many times should the computer cycle on-off when doing a factory reset?

    I have a Toshiba A665-S6065 which can not boot.  Yesterday I tried the Auto Recovery by holding the 0
    while booting, and following the default instructions.  It seemed to complete without errors.  But the computer
    will still not boot.  Today, when reading the instructions, it said to expect the computer to cycle on and off severa
    times.  So how many times?  will there be any propmts or messages?  How long should the entire process take?
    How long should the computer be off before it turns on again each time?  I think I might be screwing things up
    by intervening and trying to start the computer myself because it isn't clear to me what should actually be happening.
    Could someone please tell me what to expect before I start looking at possible hardwre problems?
    BTW, I can access the Setup and Boot Menu.
    Thanks,
    kjdroid 
    NEW info:
    Now when I boot while holding the 0 key, instead of going directly to the Recovery Wizard, it goes to the
    Windows Boot Manager.
    from there the options are Windows Setup [EMS enabled]
    and Windows Memory Diagnostic, as well as the F8 option for advanced options.
    If I select Windows Memory Diagnostic I get
    File: \boot\memtest.exe
    Status : 0xC000000f
    Info : The selected entry could not be loaded because the application is missing or corrupt.
    If I select Windows Setup or F8 followed by normal windows startup or startup in safe mode then
    I get the following sequence of events.
    Starting Windows with the Windows logo.
    then the blue screen
    Then to the Toshiba Recovery Wizard, where it partitions, and does the CRC and then prompts to press
    finish to restart the computer.
    Either the computer does not shut down, or it stops and starts very quickly because all the lights cycle
    on and off but it does not appear that the start/stop light actually ever turns off.
    Then I get the Starting Windows with Logo again.
    Then the Recovery Wizard comes back but only with the screen about partitioning.  It does not
    do the recovery and CRC this time.
    Nextis the Toshiba Logo reappears again with the options for F2 or F12 for the Setup and Boot Menus.
    Finally, I get a blue screen and it appears nothing else is happening.  I let it sit for 30 minutes before I retry, because I am not sure what is supposed to be happening now.
    Also, one of my attempts, I got as far as the messages:
    Setting up the Registry
    Starting Services
    Applying System Settings
    Will continue after restarting your computer
    Is preparing your computer for first use.
    But then again, it just goes into the blue screen state until I finally decide to shut things down.
    Am I being premature or should I let the blue screen sit there for a few hours while work is being
    done in the background?  I don't hear any sounds from the computer that would indicate any type of activity.
    Thanks again
    kjdroid

    Actually, it's kind of hard to tell you what to replace. If you have a spare hard drive laying around, go for it. It also could be memory issues (I have the same model as you) & it was my sister-in-law's notebook before I get it. The notebook had several memory dumps that CCleaner found & deleted when I was working on it. 
    I told her that I would re-install it for her to make sure there no viruses or such. After backing up the computer, I proceeded to what was supposed to work, pressing "0" at startup to no avail, then booted into the area where the system restore, command line repairs & such were, & there was the option for a factory reset, the last option. I chose that one, & like you stated, it rebooted numerous times, until finally it was through. Longest factory re-install I've ever done. 
    What led me to believe there were memory issues was during the first round of updates, it BSOD'd, another memory dump was found by my portable CCleaner. It still had the original Samsung PC3-8500 memory, so I took the memory that shipped with my MSI (PC3-10600) & installed that, then not only was all fine, it was noticably faster. Once I got it fully updated & scanned with MBAM & the ESET Online Scanner (I always do this when installing or re-installing a computer), I removed my memory & placed hers back in, then returned it to her. 
    I ended up with it about 10 days later, she said it was still dumping. Needing a spare notebook, I offered $100 for it, ending up paying $150, but still came out way better than on eBay. 
    Once I got it, I placed the 6GB RAM back in there that I had, & also replaced the HDD with a extra Crucial M4 that was laying around. Right before swapping drives, I ran HD Tune (free) on the original, there were yellow attributes, meaning that it had issues pending. It's a 500GB Seagate HDD that runs at 7200 RPM. Just so happened, I lost a 500GB Seagate Barracuda desktop HDD (7200.11) less than a month ago. Booted the computer, the screen stated "No Operating System found". 
    So it could be either the HDD or memory (RAM). Or worse yet, the MB itself. Has it been dropped? Notebooks are fairly durable, but they don't take to being dropped very well. Does it run hot? If so, there may be severe dust buildup that's causing it to overheat, that will make it BSOD. My guess is that's it's one of the first three that I mentioned above & if it's the MB, forget it. Prices are too high, even for used ones & in a notebook, it's basically a total teardown to replace it. If it's a new MB, it may cost between $200 to $400, depending on popularity of the model. That's too much to pay to repair a computer built in 2010. 
    I'm trying to give some suggestions here, based totally on personal experience on my & other's computers that I work on. However, online it's a cat & mouse game. I don't want to tell you to purchase another HDD unless it's almost 100% certain that's the issue. Which is why I asked if you have a spare earlier. Also, try reversing the position of your memory sticks (a 5 minute job), it's behind that lid close to the battery underneath the notebook. 
    Post back if you need further assistance. Someone else may have other ideas, so follow the thread.
    Best of Luck,
    Cat

  • Can I decide how many times my iphone rings?

    When I get a call from somebody can i decide how many times the iphone rings before it goes to voicemail?

    Cell phones do many things I don't care about, and iPhones do more things than any of them.
    To each his/her own but my experience with cell phones is the complete opposite which goes way back when they were mounted in your car only. A range of features or settings I don't want or care about and if I happened to come across an available setting I might be interested in, it was a chore to return to the location where the setting was available since the user interface was so very poor. I continue to use a Razr 3m with Verizon for business and what a joke in comparison to me.
    The iPhone does not do this so don't buy one if this feature is very important to you. At least you checked beforehand. No point in purchasing such a device that doesn't meet your needs or wants.
    If not, then why not? I really want a good answer to this.
    Not sure why not - maybe because this isn't a very common request. I've never used a cell phone that included such a feature. Apple doesn't answer questions here - this is a user to user help forum for technical support issues and questions only so we can only assume Apple chose not to include it or probably didn't even consider it but you can check with the provider regarding the number of rings allowed before a call goes to voice mail and if available, this would probably be a universal setting only - not by designated caller.
    Message was edited by: Allan Sampson

Maybe you are looking for

  • How to handle Connection in a SLSB

    I am reading EJB in j2ee tutorial 1.4 and in the Bank example I saw that for each private method, first a connection is obtained then work is completed and then the connection is closed.     private void updateChecking(double amount) throws SQLExcept

  • Creative Suite CS6 on Windows and MAC.

    Hello, I am running Creative Suite CS6 on Windows. I would like to run it also on my Macbook pro. How can I go about this? Thank you Marie

  • Slow scrolling in Music Store

    When browsing the itunes music store, resizing and scrolling operations are incredibly slow. Does this have something to do with hardware acceleration? I have a ATI 32MB Mobility Radeon with all the latest drivers on a 1.6GHz Pentium M Thinkpad, so h

  • Dev 6.0 Reports: Error when generating delimited output

    It seems there may be a problem when trying to use the generate delimited output command in Developer 6.0 Reports run-time. I have a report with a formula column that performs a simple calculation 'x is what percent of y,' where x and y are fields on

  • Listener returned message 403 forbidden

    Hi, I'm getting this error on almost every page that I have created, the portlets are not displayed. Can anyone help?