Performance drop after CPU upgrade.

Hias,
I got a new CPU.
I expected some performace gain icw the old one.
However...it is a lot slower 
I went from 64.000 to 47.000 in aquamark. Didn't record the values axeactly, but it seems like the CPU part is the one that is lagging behand.
I did need to reinstall and upgrade vid.card drivers and sound card drivers and CPU drivers.
Any1 have a clue the cause of this.

Sorry, should have it a bit more clear:
http://valid.x86-secret.com/show_oc?id=44047 <-old CPU (3200+ Winnie)
http://valid.x86-secret.com/show_oc?id=68314 <-new CPU (Opeteron 148)
I upgraded bios from 3.3 to 9.2.
I didn't change any other HW, As u can see (follow the links) memory settings are about the same.

Similar Messages

  • SQL performance drops after 20 mins

    Hello,
    I am using Oracle Version 9.2.0.5
    I have an SQL query that starts off fast but the performance drops after running for 20 mins. It continues to drop till a point where it becomes painfully slow.
    The query is as attached below:
    SELECT      /*+ INDEX (abe ASR_I_BID_PRD_TOD_5FAX)
    INDEX (aae ASR_I_AE_RC_BR)
    INDEX (ab ASR_UK_BASES)
    INDEX (aaac ASR_I_AFAC_SP)
    +*/aae.f8_code
    ||','||     aae.sector
    ||','||     aae.ouc
    ||','||     aae.rule_type
    ||','||     aae.base_ref
    ||','||     aae.prodlist_ref
    ||','|| aaac.L101
    ||','|| aaac.L201
    ||','|| aaac.L301
    ||','|| aaac.L401
    ||','|| aaac.L501
    ||','|| aaac.L601
    ||','|| aaac.L701
    ||','|| aaac.L801
    ||','|| aaac.L802
    ||','|| aaac.L830
    ||','|| aaac.L850
    ||','|| aaac.L870
    ||','|| aaac.L901
    ||','|| aaac.L1001
    ||','||     LTRIM(TO_CHAR((aae.disaggregated_amount*abe.percentage*aaac.chain_perc)/10000,'999999999999999.99'))
    FROM asr_owner.asr_account_entries aae
    , asr_owner.asr_base_elements_5fax abe
    , asr_ff_audit_chains aaac
    , asr_owner.asr_bases ab
    WHERE aae.run_code = '5fax'
    AND ab.run_code = aae.run_code
    AND ab.base_type = aaac.base_type
    AND ab.base_id = abe.base_id
    AND ab.base_ref = aae.base_ref
    AND aaac.base_type = 'L'
    AND aaac.business <> 'R'
    AND aae.trans_type IN ('A','C','D')
    AND abe.base_id = aae.base_id
    AND 100*(abe.exhaust_level)+abe.exhaust_sub_level = 101
    AND aaac.start_prod = abe.product
    AND ABS((aae.disaggregated_amount*abe.percentage*aaac.chain_perc)/10000) >= 0.01
    It has huge number of records. I have checked all join conditions and they are all fine.
    asr_owner.asr_account_entries - 3.6 millions rows
    asr_owner.asr_base_elements_5fax - 1.8 million rows
    asr_ff_audit_chains - 5.8 million rows
    asr_owner.asr_bases - 0.5 million rows
    The autotrace and plan are as follows
    Statistics
    0 recursive calls
    0 db block gets
    5264 consistent gets
    3522 physical reads
    0 redo size
    525 bytes sent via SQL*Net to client
    456 bytes received via SQL*Net from client
    1 SQL*Net roundtrips to/from client
    5 sorts (memory)
    0 sorts (disk)
    0 rows processed
    PLAN_TABLE_OUTPUT
    | Id | Operation | Name | Rows | Bytes | Cost |
    | 0 | SELECT STATEMENT | | 83 | 13529 | 12465 |
    | 1 | TABLE ACCESS BY INDEX ROWID | ASR_FF_AUDIT_CHAINS | 83 | 6225 | 617 |
    | 2 | NESTED LOOPS | | 83 | 13529 | 12465 |
    | 3 | NESTED LOOPS | | 1 | 88 | 11848 |
    | 4 | NESTED LOOPS | | 2201 | 113K| 3044 |
    | 5 | TABLE ACCESS BY INDEX ROWID| ASR_BASES | 774 | 13158 | 722 |
    | 6 | INDEX FULL SCAN | ASR_UK_BASES | 104K| | 104 |
    | 7 | TABLE ACCESS BY INDEX ROWID| ASR_ACCOUNT_ENTRIES | 3 | 108 | 3 |
    | 8 | INDEX RANGE SCAN | ASR_I_AE_RC_BR | 8 | | 1 |
    | 9 | TABLE ACCESS BY INDEX ROWID | ASR_BASE_ELEMENTS_5FAX | 1 | 35 | 4 |
    | 10 | INDEX RANGE SCAN | ASR_I_BID_PRD_TOD_5FAX | 1 | | 3 |
    | 11 | INDEX RANGE SCAN | ASR_I_AFAC_SP | 8241 | | 9 |
    Note: cpu costing is off, PLAN_TABLE' is old version
    19 rows selected.
    I have also tried without the hints and the plan looks like
    | Id | Operation | Name | Rows | Bytes | Cost |
    | 0 | SELECT STATEMENT | | 83 | 13529 | 679 |
    | 1 | TABLE ACCESS BY INDEX ROWID| ASR_FF_AUDIT_CHAINS | 83 | 6225 | 617 |
    | 2 | NESTED LOOPS | | 83 | 13529 | 679 |
    | 3 | HASH JOIN | | 1 | 88 | 370 |
    | 4 | HASH JOIN | | 2201 | 113K| 208 |
    | 5 | TABLE ACCESS FULL | ASR_BASES | 774 | 13158 | 16 |
    | 6 | TABLE ACCESS FULL | ASR_ACCOUNT_ENTRIES | 12125 | 426K| 191 |
    | 7 | TABLE ACCESS FULL | ASR_BASE_ELEMENTS_5FAX | 18325 | 626K| 161 |
    | 8 | INDEX RANGE SCAN | ASR_I_AFAC_SP | 8241 | | 9 |
    Note: cpu costing is off, PLAN_TABLE' is old version
    16 rows selected.
    I have tried increasing the hash_area_size parameter to 20MB (it is currently 10MB).
    I have tried setting the tuning parameters like optimizer_index_cost_adj but to no success.
    Could you please help.

    Thanks a lot for all the help.
    Here is another query that is running quite slow. Any help on this might be helpful
    EXPLAIN PLAN SET statement_id = 'auditextract' FOR
    SELECT /*+NO_INDEX(aaac)
           NO_INDEX(aae)
           NO_INDEX(abe)
           NO_INDEX(ab)
           NO_INDEX(agp)+*/
         aae.run_code
    ,     aae.f8_code
    ,     aae.sector
    ,     aae.ouc
    ,     aae.rule_type
    ,     aae.base_ref
    ,     aae.prodlist_ref
    ,     aae.trans_type
    ,     aaac.base_type
    ,DECODE(NVL(aaac.exhaust_chain,'NULL'),'NULL',',',NULL)||aaac.exhaust_chain||
      DECODE(NVL(aaac.exhaust_chain,'NULL'),'NULL',NULL,',')||LTRIM(RTRIM(aaac.final_prod))||
                RPAD(',',14-DECODE(aaac.final_level,1001,14,901,13,870,12,850,11,830,10,802,9,801,8,701,7,601,6,501,5,401,4,301,3,201,2,101,1),',') exhaust_chain,
         aaac.final_level     ,
         aaac.business ,
         L101,
         L101_TOD,
         L201,
         L201_TOD,
         L301,
         L301_TOD,
         L401,
         L401_TOD,
         L501,
         L501_TOD,
         L601,
         L601_TOD,
         L701,
         L701_TOD,
         L801,
         L801_TOD,
         L802,
         L802_TOD,
         L830,
         L830_TOD,
         L850,
         L850_TOD,
         L870,
         L870_TOD,
         L901,
         L901_TOD,
         L1001,
         L1001_TOD,
         (aae.disaggregated_amount*abe.percentage*aaac.chain_perc)/10000 money
    FROM   asr_owner.asr_account_entries aae
    ,      asr_owner.asr_base_elements_5fax abe
    ,      asr_owner.asr_bases ab
    ,      ASR_FF_AUDIT_CHAINS aaac
    WHERE  aae.run_code    = '5fax'
    AND    ab.run_code = aae.run_code
    AND    abe.run_code = ab.run_code
    AND    ab.base_type = aaac.base_type
    AND    ab.base_id = abe.base_id
    AND    aaac.base_type = 'L'
    AND    aaac.business = 'R'
    AND    ab.base_ref = aae.base_ref
    AND    aae.trans_type IN ('A','C','D','G','J')
    AND    abe.base_id     = aae.base_id
    AND    abe.exhaust_level = 1
    AND    abe.exhaust_sub_level = 1
    AND    aaac.start_prod = abe.product
    AND    NOT EXISTS (SELECT 1
                        FROM asr_group_prods agp
                        WHERE agp.product_group IN ('SW500','SR500','G176')
                        AND  (aaac.L101 =  agp.product OR
                                  aaac.L201 =  agp.product OR
                                     aaac.L301 =  agp.product OR
                                     aaac.L401 =  agp.product OR
                                     aaac.L501 =  agp.product OR
                                     aaac.L601 =  agp.product OR
                                     aaac.L701 =  agp.product OR
                                     aaac.L801 =  agp.product OR
                                     aaac.L802 =  agp.product OR
                                     aaac.L830 =  agp.product OR
                                     aaac.L850 =  agp.product OR
                                     aaac.L870 =  agp.product OR
                                     aaac.L901 =  agp.product OR
                                     aaac.L1001 =  agp.product))
    AND    abs((aae.disaggregated_amount*abe.percentage*aaac.chain_perc)) >= 100
    PLAN_TABLE_OUTPUT
    | Id  | Operation             |  Name                   | Rows  | Bytes | Cost  |
    |   0 | SELECT STATEMENT      |                         |   571 |   112K|  5586 |
    |*  1 |  FILTER               |                         |       |       |       |
    |*  2 |   HASH JOIN           |                         |   571 |   112K|  5586 |
    |*  3 |    HASH JOIN          |                         |    53 |  5406 |   370 |
    |*  4 |     HASH JOIN         |                         |  2974 |   177K|   178 |
    |*  5 |      TABLE ACCESS FULL| ASR_BASES               |   770 | 15400 |    16 |
    |*  6 |      TABLE ACCESS FULL| ASR_BASE_ELEMENTS_5FAX  | 26178 |  1048K|   161 |
    |*  7 |     TABLE ACCESS FULL | ASR_ACCOUNT_ENTRIES     | 17739 |   710K|   191 |
    |*  8 |    TABLE ACCESS FULL  | ASR_FF_AUDIT_CHAINS     |   126K|    12M|  5215 |
    |*  9 |   TABLE ACCESS FULL   | ASR_GROUP_PRODS         |     1 |    10 |     2 |
    Predicate Information (identified by operation id):
       1 - filter( NOT EXISTS (SELECT /*+ */ 0 FROM "ASR_GROUP_PRODS" "AGP" WHERE
                  ("AGP"."PRODUCT_GROUP"='G176' OR "AGP"."PRODUCT_GROUP"='SR500' OR
                  "AGP"."PRODUCT_GROUP"='SW500') AND ("AGP"."PRODUCT"=:B1 OR "AGP"."PRODUCT"=:B2
                  OR "AGP"."PRODUCT"=:B3 OR "AGP"."PRODUCT"=:B4 OR "AGP"."PRODUCT"=:B5 OR
                  "AGP"."PRODUCT"=:B6 OR "AGP"."PRODUCT"=:B7 OR "AGP"."PRODUCT"=:B8 OR
                  "AGP"."PRODUCT"=:B9 OR "AGP"."PRODUCT"=:B10 OR "AGP"."PRODUCT"=:B11 OR
                  "AGP"."PRODUCT"=:B12 OR "AGP"."PRODUCT"=:B13 OR "AGP"."PRODUCT"=:B14)))
       2 - access("SYS_ALIAS_14"."START_PROD"="ABE"."PRODUCT")
           filter(ABS("AAE"."DISAGGREGATED_AMOUNT"*"ABE"."PERCENTAGE"*"SYS_ALIAS_14".
                  "CHAIN_PERC")>=100)
       3 - access("AB"."BASE_REF"="AAE"."BASE_REF" AND
                  "ABE"."BASE_ID"="AAE"."BASE_ID")
       4 - access("AB"."BASE_ID"="ABE"."BASE_ID")
       5 - filter("AB"."RUN_CODE"='5fax' AND "AB"."BASE_TYPE"='L')
       6 - filter("ABE"."RUN_CODE"='5fax' AND "ABE"."EXHAUST_LEVEL"=1 AND
                  "ABE"."EXHAUST_SUB_LEVEL"=1)
       7 - filter("AAE"."RUN_CODE"='5fax' AND ("AAE"."TRANS_TYPE"='A' OR
                  "AAE"."TRANS_TYPE"='C' OR "AAE"."TRANS_TYPE"='D' OR "AAE"."TRANS_TYPE"='G' OR
                  "AAE"."TRANS_TYPE"='J'))
       8 - filter("SYS_ALIAS_14"."BASE_TYPE"='L' AND "SYS_ALIAS_14"."BUSINESS"='R')
       9 - filter(("AGP"."PRODUCT_GROUP"='G176' OR "AGP"."PRODUCT_GROUP"='SR500' OR
                  "AGP"."PRODUCT_GROUP"='SW500') AND ("AGP"."PRODUCT"=:B1 OR "AGP"."PRODUCT"=:B2
                  OR "AGP"."PRODUCT"=:B3 OR "AGP"."PRODUCT"=:B4 OR "AGP"."PRODUCT"=:B5 OR
                  "AGP"."PRODUCT"=:B6 OR "AGP"."PRODUCT"=:B7 OR "AGP"."PRODUCT"=:B8 OR
                  "AGP"."PRODUCT"=:B9 OR "AGP"."PRODUCT"=:B10 OR "AGP"."PRODUCT"=:B11 OR
                  "AGP"."PRODUCT"=:B12 OR "AGP"."PRODUCT"=:B13 OR "AGP"."PRODUCT"=:B14))
    Note: cpu costing is off
    47 rows selected.

  • Performance Issues after an Upgrade

    Hello!
    We are experiencing performance issues after we upgraded to a new version of Hyperion (11.1.2.1). At this point, I am not too sure about the actual causes for this degrade in performance but I am trying to narrow down the causes and need your inputs. Please help me with your ideas.
    1) What could be the causes/factors for the performance to degrade after an upgrade?
    2) Does the performance of a script depend on the user credentials i.e. who is launching the script? Whether it’s the super admin of the application/application owner or an application specific admin?
    3) Does the performance of the scripts depend on the place you are launching it from? For example - will the performance differ if it’s launched from MaxL Vs EAS?
    Please let me know your thoughts on this.
    Thanks,
    - Krrish

    There are a number of bugs 12600557, 12675485, 12669814, 12698488 logged in for 11.1.2.1 - If you use Internet Explorer 8 and have data forms designed to use a large number of sparse dimension members in rows or columns, you may experience performance degradation when opening the data forms.
    This has been fixed in Oracle Hyperion Planning, Fusion Edition Release 11.1.2.1 Patch Set Update (PSU): 11.1.2.1.101 which is available on My Oracle Support as Patch 12666861.
    HTH-
    Jasmine.

  • Performance issue after PT Upgrade.

    Hakan and Team ,
    We recently moved from PT 8.48 TO PT8.51.18 on CRM 8.8 Application.
    After the upgrade, we tremendously saw big performance issues with PeopleSoft CRM Application. It freezes almost every day and all their work-force (call center representatives) go idle. It significantly impacts their productivity and eventually losing revenue.
    can you please suggest few suggestion or DOC that will help us to improve performance on application and DB side.
    Deatils :-
    SQL SERVER 2005
    Windows 2008 R2

    Hi,
    Performance is always a difficult one to tackle.
    It can be at so many levels, DB, Appserver, Webserver, CPU, RAM, Infra, etc.
    At OOW2012, David Kurtz gave a great highly detailed presentation on this subject: CON9210 - Performance Tuning for PeopleSoft Administrators
    http://www.myexpospace.com/oracle2012/smupload/scloader.cfm?SCID=257daa92-a6e8-411a-9806-2c22e56687d3
    See if you can apply some of the keypoints from his presentation.
    Regards,
    Hakan

  • Performance check after CPU

    Dear colleagues,
    Is any posilble check or test (benchmark) of DB performance before and after CPU patching?
    Any testing SAP or SQL report, which makes a load on DB?
    Thank you for advice.
    Best Regards
    Jakub Vaněk

    > Is any posilble check or test (benchmark) of DB performance before and after CPU patching?
    > Any testing SAP or SQL report, which makes a load on DB?
    Those test would be synthetic and may or may not reflect your current environment.
    I'd check some long running reports in your environment if you see any difference.
    Markus

  • No output to HDMI (but ok to VGA...) after CPU upgrade

    Hi there,
    I have a very strange problem... hope you can help!
    I wanted to upgrade my Mac Mini to use it as an HTPC, so I passed from 1.83Ghz CoreDuo/512Mb to 2.00Ghz Core2Duo/2Gb.
    The CPU and RAM upgrade process went OK, so I tried to connect the Mini to my HDTV (TOSHIBA 37A3030D) via a DVI->HDMI cable, but the screen was blank.
    I thought I had somehow damaged the digital video out of the Mini during the upgrade, so I tried to plug a 17" monitor with a VGA-VGA cable and a DVI-VGA adapter: no problem there.
    Then I thought about a cable issue, but the very same cable works perfectly when I try it with my MacBook Pro, and in the same TV.
    So I played a little with SwitchResX and finally resolved: after few tries and some reboots everything worked.
    But then I noticed that CPU temperature was a little too high, so I decided to re-open my Mini and put a better thermal compound.
    All went well, or so it seemed: in fact since this last intervention the CPU temperature went ok but I couldn't get HDMI output from my Mini any more!!
    Output to VGA still works, tried with the monitor I mentioned before and with my TV's VGA input ... too bad I can't reach 1080i via VGA!.
    I tried almost everything:
    - Playing around with SwitchResX, with no luck this time...
    - Resetting PRAM and NVRAM with various methods (the little button on the motherboard, CMD-OPT-P-RE during the boot, etc... )
    - Resetting SMC
    - Resetting firmware (keeping the power button pressed when turning on the machine 'till it beeps)
    - Reinstalling Leopard
    ...no results.
    The weird thing is that if I VNC to the mini I notice that the TV is correctly recognized (screenshot: http://www.matteo.ge.it/vnc_mini.jpg), and EDID data seems ok (link: http://www.matteo.ge.it/TOSHIBA-TV_macmini.txt)
    Do you guys have any idea?
    Thank you so much, I'm getting desperate

    I tried to connect the mini to the TV just after the upgrade. After some tweaking with SwitchResX it worked. The problems began when i decided to re-open the mini to put some better termal compound over the CPU.
    I agree with you, I have probably screwed up something during this operation, but I really can't say what!!! I tried both TechToolPro and the hardware tests from Tiger DVD, and all of the tests were ok...
    I phoned to the Apple tech support here in italy, but they proposed me to change the entire logic board, which would cost me almost the price of a brand new machine!!
    The ultimate test I want to do is to hook up my Mini to a DVI monitor with a DVI-D cable.
    If it doesn't work, It is almost certain that I have damaged digital video out (even if I would like to know how I could did that!!)

  • Performance drop after new hardrive,

    the performance dropped drasticly after a I superdupered yje old Hardrive to the new disc.
    not only in Pro logic but also in Ableton Live....?
    any ideas....
    thx Daniel

    What I meant was that many hard drives come formatted for Windows and need to be reformatted for Apple machines, but you've certainly found the answer in your drive's speed.

  • Performance slowdown after iOS5 upgrade

    Did anyone assess performance slowdown on iPad after iOS5 upgrading?
    ...especially refering to the panel responsiveness within Safari!... any troubleshooting feasible? Thank you!

    My iPad 2 feels snappier overall - there are a couple apps that haven't been updated for iOS 5 that exhibit problems though. My wife's iPad 1 seems about the same or a bit faster depending on what she's doing - and of course has the same issues with some apps that need upgrading.
    So far the only downside I can see to upgrading is that I've taken a small hit on the battery due to the improved notifications mostly, I think. By small I mean at the very end of the day when I connect it to my alarm dock, it has just over 20% instead of the more usual 25-30% charge left

  • Performance issues after iOS4 upgrade

    hello everyone,
    I had notices few issues after I upgraded my iPhone 3GS:
    1- The screen is not rotating (when reading e-mails of flipping photoes).
    2- The resolustion has decreased big time after the upgrade. Now the photos are shown in less resolution and they look hazy.
    3- my Ipod is not working.
    4- I could not restore my device via the itune.
    my big question is there a real tangible benifit for this new upgrade?
    I really appreciate if you can help me soon
    thanks.

    There are a number of bugs 12600557, 12675485, 12669814, 12698488 logged in for 11.1.2.1 - If you use Internet Explorer 8 and have data forms designed to use a large number of sparse dimension members in rows or columns, you may experience performance degradation when opening the data forms.
    This has been fixed in Oracle Hyperion Planning, Fusion Edition Release 11.1.2.1 Patch Set Update (PSU): 11.1.2.1.101 which is available on My Oracle Support as Patch 12666861.
    HTH-
    Jasmine.

  • DB performance drops after DB bounce

    Hello,
    In one of our Production databases the Performance of Jobs suddenly drops after Database restart.
    I suspect the SQL execution plan for 1 or few SQL's in the JOB changes after restart.
    What all factors can cause an SQL Execution plan to change ?
    How do I determine the cause ? [any trace or dumping thru ORADEBUG. will it help ?
    Thanks in advance for yur help.
    Regards,
    Valli                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    user4566776 wrote:
    Hello,
    In one of our Production databases the Performance of Jobs suddenly drops after Database restart.
    I suspect the SQL execution plan for 1 or few SQL's in the JOB changes after restart.Why suspect it when you can prove/disprove it? It would be very simple. Take an explain plan on your targeted queries when they are running good. Bounce the database and take another explain plan immediately after it comes up.
    >
    What all factors can cause an SQL Execution plan to change ?
    How do I determine the cause ? [any trace or dumping thru ORADEBUG. will it help ?
    Thanks in advance for yur help.
    Regards,
    Valli
    That being said, I strongly suspect what you are seeing is the result of the buffer cache being empty when the database first starts.  Thus, for a while after restart, all queries will result in physical reads, whereas once you get a 'normal' working set in the buffer cache, a good percentage of reads will be logical instead of physical.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • No post after CPU upgrade?

    Hi
    I upgraded my processor to a XP1700+ In an Msi K7T266 Pro2 Mb It had the older Athlon 1 Gig CPU. After I installed it all I would get is 3 lights on the D bracket and no monitor or post. I have already updated the BIOS before the CPU upgrade. I have an Antec 430 true power PSU, cleared CMOS, doublechecked Heatsink and all connections still wont post (not even a beep code) Installed old CPU and Viola it booted fine has anybody ran into this? Another post said something about a modification needed on this board to support the newer 0.13 micron CPU,s but the post never reached a conclusion if so is there a way around this?
    Thank you in advance for your help.............

    Go bare bones.  
    1) Disconnect everything.  IDE cables, FDD cable, take out all PCI cards, only leave videcard  :P .
    2) Clear CMOS (you may have to remove battery or switch PC on/off without plugged in to discharge capacitors).  
    PC should post now.  If it doesn't post I wonder if CMOS is really cleared.  Assuming CPU XP 1600 is okay (have you checked?) it means that BIOS doesn't recognise CPU.  Did you flash with correct version?

  • Satellite M40x will not boot up after CPU upgrade test

    I have an M40x Laptop. I took the CPU out of it to replace it with another to test the computer booted up fine so I shut down and took it out and put it's original CPU back in, and it would not boot. Now it will not boot up at all with either of the CPU's all. When I turn on the power all I get is a white screen for a few seconds and the laptop shuts itself back down. Both the CPU's are good because I have since tested them in other computers to make sure that was not the problem.
    Anyone have any ideas on what is causing this??

    Im not surprised.
    As far as I know Toshiba does not support any CPU upgrades and it's not advisable to do something like that.
    Its a fact that the CPU replacement on the notebooks is not easy and mostly not recommended.
    The processors used in portables are connected to the system board using a process called TCP (Tape Carrier Package). This is a permanent connection method and is used in the interests of miniaturization and heat dissipation.
    Did you assign the new heat paste? Its necessary and important if you want to connect the CPU again.
    So possibly this is a reason for the no booting.
    I think more details you will get from the service guys in your country

  • Performance Problems after Database Upgrade to 10.1.0.5

    Has anyone else encountered Discoverer Query performance suffering drastically once upgraded their database from 10.1.0.4 to 10.1.0.5? It is almost 5 times as slow.

    ask your DBA to analyze the schema (gather statistics) for the concerned schema. This should eliminate one possibility
    Nilesh
    http://www.infocaptor.com

  • Wifi performance drops after connecting dualshock 3 via bluetooth

    As the title says,  when i sync my dualshock 3 control via bluetooth to my sgp321, wifi performance drops from 50 mbps to 8 mbps or less.... 
    I've tried all the common "solutions"  given,  from pccompanion restoring to put the router in the fridge with a potato nailed on the wifi antenna during a week, starting on Halloweens night... 
    Could i have a sony expertise answering about this issue??? 
    Regards. 

    Could it be that you have your WiFi and Bluetooth in same frequency band? Any chance you can try WiFi on the 802.11n band? or try changing channels of your WiFi router? I don't think you can change your Bluetooth. Frequencies... I believe WiFi on "n" operates at 5 ghz as opposed to bluetooth operating in 2.4 ghz band... that way less chance of interference

  • Discrete graphics card performance drop after overheating

    Recently I played Amnesia: The Dark Descent on my pc while overclocking slightly using Sapphire TRIXX. I changed GPU clock from 750 to 84x and memory clock from 900 to 10xx. During a cinematic the com crashed, ctrl at del failed to load up but sound was still coming out. I left it like this for2-5 min before force shutdown. When I turned on my laptop again n tried to play games there was a huge performance drop. Games running at 60 fps turned to 20 plus when using dedicated graphics card only ( I disabled dynamic mode n used fixed mode while playing amnesia also, which means I was purely using the dedicated graphics card.)
    My laptop is a hp dm4 3005tx Beats edition, with Intel I5 2.5GHz processor and 8.00 gig ram. I also disabled paging file on my laptop btw, regretting this .
    can some1 tell me hw to fix.this problem or can I replace my discrete graphics card? Because my laptop has Radeon hd 7470m and Intel hd graphics

    The graphics card is soldered on so no replacement. I would do a wipe and reload of the OS and stop overclocking laptop video cards. They are too sensitive to heat and other issues. You are asking for trouble, and may have already found it. At a minimum run DriverCleaner and remove the video driver until you get back to a low-res screen generic vga hardware and then reinstall the best driver you can find.

Maybe you are looking for

  • How to make a clean install of Mavericks over 10.4.11

    Hey everyone, I would like to make a clean install of Mavericks on mid-2007 MacBook Pro ([email protected], 2GB RAM) which currently runs 10.4.11. I already made bootable USB of Mavericks, which i downloaded with my MacBook Air. When I insert USB and

  • Dynamically changing contents of a JListBox?

    Hi, I can load an array of strings into a JListBox upon initializing the JListBox.After that if I try to change the list by for example an "add" type method as in other programming languages, it doesnt accept a string or an array of strings.I have va

  • Finding out about instance of a class

    can u tell me , how do u determine whether a instance of a class has run completely or not.. i have to basically check whether a previous instance of a class has run completely or not.. in case it has not run completely then i need to restart it agai

  • NullPointerException . . .  problem. in Array

    i make a class UserData.java package server; import java.io.Serializable; public class UserData implements Serializable   { private String name; private String id; private String add; public UserData() { name = ""; id = ""; add = ""; public String ge

  • KMZ (Google Earth) files on iWeb site

    I use MotionX GPS to record tracks of our trips. I then email the track to myself. This results in an attached KMZ file. Launching the file launches Google Earth and the track is nicely displayed with the start and finish pins at the top and bottom o