How does my system compare to more up to date systems?

I was just curious as to how you experts feel my system compares to what is out there now?
Is my system obsolete already or does it still have a few years of life left? 
Would an additional 512 MB of RAM help much or not?
Thanks
Mike

Quote from: Richard on 14-July-05, 20:57:27
Mike,
It is a Thermaltake Heatsink and Fan:
Thermaltake Silent Boost 80mm Ball Cooling Fan
But I still prefer the Polo 735 since it will let you upgrade to an Athlon64.
Richard
I went back and found this thread because my computer kept shutting down tonight and I thought it was the PS at first. Then I pulled it out and looked at the Mobo and saw that the CPU fan was not spinning.
It was hot on the heatsink too. 
So I found this thread and got the name of this cooler and went out to Fry's Electronics and bought me a Silent Boost.
Now I am up and running again.......hopefully.   
Mike

Similar Messages

  • How does Oracle Database compare with IBM DB2?

    Hi
    thank you for reading my post
    How Does ORACLE Database compare with IBM DB2 ?
    Which one has better performance with similar workload?
    Which one perform better on System Z hardware and z/OS?
    Is there any document that compare these two product?
    Thanks.

    Hi
    The below link may useful to you.
    http://www.oracle.com/technology/deploy/availability/pdf/CWP_HA_Oracle10gR2_DB28.2.pdf
    With best regards
    Shan

  • Can anyone let me know how does the system calculate forecast strategy?

    Hi all,
    I am new in Demand planning,,  I can see a couple of Forecast strategy used in  the production. I would like to know how does the system does the calculation for the forecasting strategies like
    36     Median method
    13     Moving average
    94     Linear regression
    etc.
    Can anyone pls guide me how does the system do the calculation and how to validate those calculations!!
    Thanks
    Pooja

    Hi Pooja,
    The below link will contain the detailed list of all forecast strategies alongwith how
    it will be calculated alongwith the formulas
    http://help.sap.com/saphelp_scm70/helpdata/EN/ac/216b6e337b11d398290000e8a49608/frameset.htm
    Please confirm whether this helps you to resolve your query
    Regards
    R. Senthil Mareeswaran.

  • How does the system knows hire action first

    Hi all,
    Iam new to this community, recently i have joined as an SAP HR trainee ,and i am undergoing SAPHR training Programme.
    why can't the system allow us to do promotion action before Hire action?where do we configure this to make it happen, how does the system knows to do the Hire action first, where are the settings for this..
    Swathi

    hai
    there are a number of programmes running in the back groung when u do any application.
    the validations will be written in them
    when u try to do something through the programe running at the back ground does these validations  like the example u have taken when u do the promotion action it checks whether actions exists or not if not then it throws the error written in the program.
    regards
    nalla

  • How does the system identifies whether we use Psotive or Negative Time Mngt

    Dear All,
    How does the system identifies whether we use Psotive or Negative Time Management.
    Appreciate your early response.
    Regards
    Rajesh

    Hi
    1. In positive time management we record the actual time of the employee working in organization and following are the infotypes we need to maintain in master data,
              1. Organztion Assignement [0001]
              2. Personal Data [0002]
              3. Absence Quota [2006]
              4. Planed working time [0007] with the time management status " if you are using PDC then "2" " Or "1. Time evaluation actual time".
              5. Time Recording Info [0050]
    2. In Negative time management we are only recording the time deviation like "Absence, Illness, Leave" and following are the Infotype we need to maintain in master data,
             0001, 0002,0007 with time management status "0" i.e No time evaluation and 2006.
    Best of Luck
    Swapnil

  • How does the system calculate nondeductible taxes?

    Dear Gurus,
    How does the system calculate nondeductible taxes?
    Thanks..

    The sytem calculates the Taxes based on the Tax rates maintained in a tx code, the Caluctaion is based on the taxing procedure assigned to the Country.
    Non deductible tax is identified based on the Account key assigned to the Condition type in the Taxing procedure.
    The Non deductible tax Account keys are
    NAV - Non-deduct.input tax ( This will distribute the tax into a new line item)
    NVV - Non-d.input tax dist ( this will Distribute to relevant expense/revenue items )

  • How does the system knows age or seniority is crossed for so and so... EE

    Hi Experts,
    In my project we have configured some Health plans based on ages and seniority,
    Employee can enroll in to the plan when they reach the age or seniority,
    my question is how does the system knows  age or seniority is crossed for so and so... EE, where exactly we do this setups
    Pleae let me know your valuable answers
    Regards
    Sreeni

    hr_entry_date and you can use various
    fm to calculate this, It reads 0019, 0041 or Hdate feature
    3QP8                           Time related calculation function mod.
    HR_AUPBS_SENIORITY             Calculate the whole length of service of employee
    3RP3A                          Leave schem proration modules
    SGPS_LS_SENIORITY_CALCULATION  Function for seniority calculation for Singapore Leave Scheme
    HRDO
    HR_DE_PBS_SENIORITY_PERIODS
    HRFPBS4AV0
    HR_PSF_AV_ANC_INPUT_SENIORITY
    HRF_METADATA_IT
    HRF_READ_SENIORITY_IT

  • How does the system calculate taxes?

    Dear All,
    How does the system calculate taxes?
    Can anybody explain in detail how the values will flow from PB00 / PBXX to BASB ?
    Is this flow will remains same in both deductible & non deductible taxes ..??
    Pls explain
    With Regds

    Hi
    Just remove the base type 362 in the taxing procedure & check if your tax is calculating or not.
    The Tax determination still works.
    FORM FRM_KOND_BASIS_362.
    *Application country specific
    *This alternate base value is to be attached to BASB. This routine
    *fetches KZWI6 captured in the pricing procedure.
    Thanks & Regards
    Kishore

  • How does production system takes the benefits of user exits

    hi
    could anybody tel me
    how does production system takes the benefits of user exits

    Hi,
    you have to transport your implementation to your production system.
    Regards
    Bernd

  • How does the System.in.read() works?

    Hi!I'm trying to read some chars from the console.So here is my code of reading the two chars:
           char ch1='\u0000';
           char ch2='\u0000';
           System.out.print("Enter the first char:");
           ch1=(char)System.in.read();
           System.in.read();
           System.out.print("Enter the second char:");
           ch2=(char)System.in.read();
           System.out.println("You have typed the following letters:"+ch1+" , "+ch2);My problem is that if I don't add the System.in.read(); line after reading the first char i wont be able to read the second.But I saw on a code on the net that they put it.So I've put it too but don't understand what it does.I mean the System.in.read(); function reads until it gets -1.But in my case it's gonna get '\n'.So how does this function works?Thank you!
    Edited by: jcoder86 on Oct 9, 2009 5:36 AM

    jcoder86 wrote:
    Hi!I'm trying to read some chars from the console.So here is my code of reading the two chars:
    char ch1='\u0000';
    char ch2='\u0000';
    System.out.print("Enter the first char:");
    ch1=(char)System.in.read();
    System.in.read();
    System.out.print("Enter the second char:");
    ch2=(char)System.in.read();
    System.out.println("You have typed the following letters:"+ch1+" , "+ch2);My problem is that if I don't add the System.in.read(); line after reading the first char i wont be able to read the second.But I saw on a code on the net that they put it.So I've put it too but don't understand what it does.I mean the System.in.read(); function reads until it gets -1.But in my case it's gonna get '\n'.So how does this function works?Thank you!
    Edited by: jcoder86 on Oct 9, 2009 5:36 AMThat's wrong. System.in.read() reads a byte from the stream. -1 is returned if the end of stream has been reached (that usually doesn't happen if you read from stdin)
    The second System.in.read() is there to throw away the line terminator.

  • How does the system decide where to put a file on the desktop?

    So you've just created some sort of file, and you choose to save it to the desktop.   A second later--presto!--the file icon appears on the screen.
    How does the computer decide where on the desktop to put that icon?

    I'm not 100% on this, but I think the system will save files to the last destination you nominated unless you designate another destination at the point of saving. I guess you previously saved something to the Desktop.
    Just tested it on my two Macs and that's how it behaves here.

  • How does point system works?

    Dear all,
    I am wondering how this point system works? I had 915 points this morning and now end up with 905. Instead of going up, it fluctuates from time to time. Initially, it use to show up next to my name with 915 but then that went down to 514???
    Is it only me or someone else has seen this behaviour?
    I am not points buff but it seems pretty strange that one day infact in the same day the numbers fluctuates like they do in stock exchange.
    Regards
    Jehanzeb

    >
    Amit Gujargoud wrote:
    > I think you misunderstood His words and take it hard. Iu2019m sure he actually
    >  meant in a Cool way. Letu2019s wait until his morning, he will come to you with more cool way
    Nope, in this case, Kartik already has "the hard way" behind him.
    During an investigation into a nest of points gamers in October last year, Kartik was investigated as well for having for having participated in one of the threads. There were many being investigated. Other symptoms matched (we have some strict rules for this) - so the mistake was perhaps understandable - but on the other hand I should perhaps have looked a bit further to see that Kartik's post patterns were different to those of the others (who were not located very far away from Kartik..).
    Anyway... as they faded away into the annual ponits total of those who are being transported into the world where the A.G. calendar is used ( Anno Guestus ) ... Kartik's ID faded away with them.
    Kartik contacted me about it and I took his word for the expanation that he was not involved. I am very glad that I did that, as he has been a big help in the ABAP forums.
    I don't have the exact figures, but last I heard we have deleted more than 50 thousand user ID's for ponits gaming. I am always very carefull when investigating this and there are other people who check it as well before any action is taken.
    To date, to my knowledge, Kartik has been the only mistake we have made. Others have begged for mercy, but that is different. Hence my comment that he should wear the difference like a "battle scar" caused by the "journal entry", until Micheal can possibly fix it.
    As you can see, "we are all guilty of something"   (quote: Inspector Vimes)
    Cheers,
    Julius

  • How does the system calculate the Taxes?

    Dear all friends,
    How does the SAP system calculate the Taxes?
    pls. explain with the example will be highly appreciable.
    thanx in advance to all
    best regards,
    Rajesh

    Hello
    The SAP system calculates tax based on the tax calculation procedure assigned to your country in OBBG.
    The tax calculation procedure is similar to the pricing procedure in materials management.
    As you have different pricing elements like gross price,discounts,freight charges, etc in pricing procedure, you will have different tax elements like Excise duty,Special excise duty,Cess,Edu cess,VAT,CST, etc in tax calculation procedure.
    At the time of PO creation, the tax base amount is communicated to the tax calculation procedure from the pricing procedure.
    And the tax values are calculated based on that and how you have configured your tax calculation procedure.
    In CIN, we have two tax calculation procedures
    TAXINJ which can be formula based or condition based and TAXINN which is condition based.
    In TAXINN, the tax percentages are picked from the condition records maintained.
    But in TAXINJ, it can be either from the condition records or the tax % given in the tax codes in FTXP. It depends on how you configure your system.
    Hope this helps
    Regards
    Gregory Mathews

  • How does Vision Film compare to SkyMovies (premier...

    It looks like Vision Box Office ppv films are much the same as Sky Box Office (now "Store"), but how does the free Vision Film channel compare to Sky Movies Premier?  From looking at the listings it would seem that VF is some way behind Sky Premier, which means a massive gap between when films are on Box Office until they're on VF.
    My reason for asking is that I generally only watch the new releases, and currently on Sky I'm happy to watch on Premier rather than paying for Sky Store as they're not too far behind (and still massively ahead of what Lovefilm can offer).  From a brief view of the Vision Film listings, I can see that I'd end up buying films from Vision Box Office instead of waiting.
    An alternative would have been the NOW TV subscription, but its ludicrously in SD not HD, and they've stated no plans to move to HD on YouView (only Xbox).  So no way I'd pay £15pcm for SD films.

    kryten22uk wrote:
    It looks like Vision Box Office ppv films are much the same as Sky Box Office (now "Store"), but how does the free Vision Film channel compare to Sky Movies Premier?  From looking at the listings it would seem that VF is some way behind Sky Premier, which means a massive gap between when films are on Box Office until they're on VF.
    My reason for asking is that I generally only watch the new releases, and currently on Sky I'm happy to watch on Premier rather than paying for Sky Store as they're not too far behind (and still massively ahead of what Lovefilm can offer).  From a brief view of the Vision Film listings, I can see that I'd end up buying films from Vision Box Office instead of waiting.
    An alternative would have been the NOW TV subscription, but its ludicrously in SD not HD, and they've stated no plans to move to HD on YouView (only Xbox).  So no way I'd pay £15pcm for SD films.
    The movies on VF are not as new as the releases on Sky or NowTV. But even if you had NowTV the films listed on their website may not actually be on Youview for licencing reasons and may only appear on other formats.
    If you want the latest movies without having to pay after they have been on box office then you may as well use Sky - if you are willing to wait for them to be released on VF then go with BT.
    Also if you have the unlimited package for Vision, then you get a choice of approx 250 movies, loads of tv series and music videos included. BT stream some movies in HD, which NowTV don't and nor do Sky (you have to download films first with Sky).
    Also remember to get the premiers, etc on Sky, you pay a premium for it, compared to the monthly cost of BT Youview or BT Vision

  • How does time capsule compare to a different external drive

    how does time capsule cpmpare to other external drives used to perform backups with time machine?

    Hi space needle,
    Thank you for posting on the Adobe forums, please help us with the information listed below for further assistance on this.
    1) which Application are you trying to install?
    2) Operating System you are working on
    3) Method of installation (customized or the standard installation)
    Thanks,
    Vikrantt Singh

  • How does the system Validyne pressure transducer -- Validyne CD280-Dual-- SCB-68-- PCI-6024E-- LABVIEW work and how can we calibrate the pressure transducer?

    Hello there,
    I am completely new to the LABVIEW software.
    I am learning an existing LABVIEW code of my pressure acquisition system (attached) which has the data path as following: Validyne pressure transducer --> Validyne CD280-Dual--> SCB-68--> PCI-6024E--> LABVIEW and I have some question:
    1. How does the complete system from transducer to the LABVIEW work? ie if we apply the pressure at the transducer, it will change the resistance of the transducer then ....?
    2. How can I find the equation which express the relationship between the pressure and the voltage at the oupt of the Validyne CD280-Dual in the LABVIEW?
    3. If I want to do the calibration for the transducer, what are steps?
    Thanks,
    Solved!
    Go to Solution.
    Attachments:
    Experiment.vi ‏143 KB
    Plogger.vi ‏21 KB

    Hello there,
    I do not understand what subVIs you are refering to but I have tried to run the LABVIEW program using the files I attached and it worked fine (pls see the attached pressure plot).
    As I mentined before, I am new to LABVIEW so maybe I do not know.
    Thanks,
    Attachments:
    Pressure plot.jpg ‏111 KB

Maybe you are looking for

  • How do i contact or give the request to the seller if my ipad is in active screen?

    i bough an ipad mini from a person (2nd bough the ipad), when he give me the ipad mini has fw 7.0.4 and didnt have icloud or appstore id, but when i bring it home, i try to reset all settings and it ask me pin code (i ask the 2nd user and he said he

  • Parallel process(ora_pnnn)

    ps -ef|grep ora_|grep DCC로 background process를 찾아보니, ora_pnnn_DCC가 8개가 나오더군요.(물론, init file에 parallel_min_servers=0 , parallel_max_servers=8 로 지정되어 있습니다.) ora_pnnn은 parallel process이고, init file에서 parallel_min_servers와 parallelserver_idle_time값을 확인해보

  • Can't connect Z10 to BB Link using Wi-Fi

    I'm using Windows 7 and can see my Z10 in Link while I have the USB cable plugged in. As soon as I unplug the USB my Z10 shows as being disconnected. The Z10 shows that I'm on the home Wi-Fi network and the computer is connected to the network. When

  • Can we call another flavor using launch button or script button

    I am creating a Welcome screen ( 1st  flavor for SMEN transaction) . However I want to call another flavor ( 2nd flavor for SMEN transaction) from 1st flavor . Second flavor will have a few transactions ( for example which are used only for budgeting

  • Quicktime on iPhone...

    I really want to watch online mpeg clips but like many of you, cant. What about sticking Quicktime on the phone? I mean, it is rare to come across a media clip that is anything but quicktime format. I definately dont want to go home and download the