How do I know if my DV3 notebook uses discrete or UMA memory? (I need a new Fan Assembly)

I haven't got the PC with me right now, but from memory it's a DV3 2120 EA
This question was solved.
View Solution.

Hi, I think you may mean graphics and not memory.
Here are the specs for the unit you listed
http://h10025.www1.hp.com/ewfrf/wc/document?docname=c01806759&tmp_task=prodinfoCategory&cc=uk&dlc=en...
Here is the guide for your notebook, it has the parts,
http://h10032.www1.hp.com/ctg/Manual/c01720761.pdf
There are online parts stores in some regions, or you can go to an Authorized HP repair provider
I am an HP employee
Knowledge is power...Power to the people

Similar Messages

  • How do i know if my macbook can use airplay with apple tv?

    how do i know if my macbook can use airplay with apple tv?

    AirPlay Mirroring needs an Early 2011 or newer MacBook Pro, so your computer supports AirPlay Mirroring. Make a backup, open App Store and purchase OS X Mountain Lion

  • How do I know if my iPad is using wifi or cellular?

    I've just got a sim card for my iPad. How do I know if my iPad is using 3G or Wi-Fi?

    if you have a wifi connection (shown in wifi symbol in top right of display) you will always use wifi over 3g

  • How can i know which index will be used when executing the query ?

    1 ) I have query in which i have 3-4 tables but there multiple index on one column .
    so how can i know which index will be used when executing the query ?
    2) I have a query which ia taking too much time . how can i know which table is taking too much time ?
    3) Please Provide me some document of EXplain plan ?

    Hi Jimmy,
    Consider the below example
    /* Formatted on 2011/02/04 21:59 (Formatter Plus v4.8.8) */
    CREATE TABLE FIRST AS
    SELECT * FROM all_objects;
    UPDATE FIRST
    SET object_name = 'TEST'
    WHERE owner != 'SCOTT';
    CREATE INDEX idx_first ON FIRST(object_name);
    SELECT *
    FROM FIRST
    WHERE object_name = 'TEST';
    It has not used index
    Execution Plan
    Plan hash value: 2265626682
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 58678 | 7334K| 163 (4)| 00:00:02 |
    |* 1 | TABLE ACCESS FULL| FIRST | 58678 | 7334K| 163 (4)| 00:00:02 |
    /* Formatted on 2011/02/04 21:59 (Formatter Plus v4.8.8) */
    SELECT *
    FROM FIRST
    WHERE object_name = 'emp';
    This has used the index
    Execution Plan
    Plan hash value: 1184810458
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 1 | 128 | 1 (0)| 00:00:01 |
    | 1 | TABLE ACCESS BY INDEX ROWID| FIRST | 1 | 128 | 1 (0)| 00:00:01 |
    |* 2 | INDEX RANGE SCAN | IDX_FIRST | 1 | | 1 (0)| 00:00:01 |
    From this we can come to the conclusion that, whether to use one index or not by oracle
    would also depend on the data which is present in the table. This has to be this way as
    we see in the bind peeking, if oracle sticks to only one plan, say only use the full table
    scan, it would be a performance hit when it searches for the second query ie where object_name
    ='emp';
    2.
    If we have a query like below.
    select * from emp
    where upper(ename) = upper(:p_ename);
    Evenif we have the index on ename column, oracle wouldn't be able to use the index, as there is a function in the predicate column. If you need oracle to use the index, we need to create a function based index as below.
    Create index idx_ename on emp(upper(ename));
    Regards,
    Cool

  • Difference between photoshop cc and photoshop cc 2014   how do i know which one I am using?

    difference between photoshop cc and photoshop cc 2014   how do i know which one I am using?

    Hi Petereas,
    Both are different version of Photoshop application.
    In Photoshop CC 2014 there are several new feature introduced than CC.
    Please refer the following page on whats new in Photoshop 2014.
    Photoshop Help | New features summary
    When you go to Help>About Photoshop then Photoshop 2014 shows version 2014.0.0 Release.
    Hope this helps.
    Thanks and Regards,
    Sumit Singh

  • How does one know whether or not they use "Java applets"?

    The support doc for the recent Java update (Update 8, for Snow Leopard), entitled "About Java for Mac OS X 10.6 Update 8," advises the following:
    If you do not use Java applets, it is recommended that you disable the Java web plug-in in your web browser.
    How does one know whether or not they use "Java applets"?
    Thanks.
    URL:  http://support.apple.com/kb/HT5243

    K.S. wrote:
    dymar wrote:
    Also, how would I know that a missing applet was causing some feature(s) not to work in a situation where no error mesage was returned?
    Sometimes you have to dig to find out: http://earthnow.usgs.gov/earthnow_app.html
    doesn't tell you directly, but it is mentioned in the FAQ that Java is required. If the content is appropriate, you can always ask here.
    Thanks.  According to that webpage, my "Java is out of date."  When an error message like that is returned, I guess it's clear that "it's a Java problem."  Presumably, one would then just go to java.com and download the applet if he/she wanted to view the webpage.
    I was wondering more about situation when unexplained problems that involved missing Java applets weren't noted in error messages.
    But maybe I'm worrying about something that doesn't really need to be worried about.

  • How can i know if my query is using the index ?

    Hello...
    How can i know if my query is using the index of the table or not?
    im using set autotrace on...but is there another way to do it?
    thanks!
    Alessandro Falanque.

    Hi,
    You can use Explain Plan for checking that your query is using proper index or not. First you need to check that Plan_table is installed in your database or not. If it is not there THEN THE SCRIPT WILL BE LIKE THIS:
    CREATE TABLE PLAN_TABLE (
    STATEMENT_ID VARCHAR2 (30),
    TIMESTAMP DATE,
    REMARKS VARCHAR2 (80),
    OPERATION VARCHAR2 (30),
    OPTIONS VARCHAR2 (30),
    OBJECT_NODE VARCHAR2 (128),
    OBJECT_OWNER VARCHAR2 (30),
    OBJECT_NAME VARCHAR2 (30),
    OBJECT_INSTANCE NUMBER,
    OBJECT_TYPE VARCHAR2 (30),
    OPTIMIZER VARCHAR2 (255),
    SEARCH_COLUMNS NUMBER,
    ID NUMBER,
    PARENT_ID NUMBER,
    POSITION NUMBER,
    COST NUMBER,
    CARDINALITY NUMBER,
    BYTES NUMBER,
    OTHER_TAG VARCHAR2 (255),
    PARTITION_START VARCHAR2 (255),
    PARTITION_STOP VARCHAR2 (255),
    PARTITION_ID NUMBER,
    OTHER LONG,
    DISTRIBUTION VARCHAR2 (30))
    TABLESPACE SYSTEM NOLOGGING
    PCTFREE 10
    PCTUSED 40
    INITRANS 1
    MAXTRANS 255
    STORAGE (
    INITIAL 10240
    NEXT 10240
    PCTINCREASE 50
    MINEXTENTS 1
    MAXEXTENTS 121
    FREELISTS 1 FREELIST GROUPS 1 )
    NOCACHE;
    After that write the following command in the SQL prompt.
    Explain plan for (Select statement);
    Select level, SubStr( lpad(' ',2*(Level-1)) || operation || ' ' ||
    object_name || ' ' || options || ' ' ||
    decode(id, null , ' ', decode(position, null,' ', 'Cost = ' || position) ),1,100)
    || ' ' || nvl(other_tag, ' ') Operation
    from PLAN_TABLE
    start with id = 0
    connect by
    prior id = parent_id;
    This will show how the query is getting executed . What are all the indexes it is using etc.
    Cheers.
    Samujjwal Basu

  • How do I know if my iphone 6 uses a MLC or TLC drive?

    I would like to know if my iphone 6 uses either a MLC or TLC drive.
    I am using iphone 6 64gb gold.
    Is there any way to check?

    Here's how you can check your phone is TLC or MLC, install "IOKitBrowser" from here: (no jailbreak required so this doesn't against the apple's rule).
    http://www.pgyer.com/IOKitBrowser
    after install search for "device characteristics", and keep tapping the result until you see something like this:
    Look for "default bits per cell", 2 means you got a MLC phone and you are fine, 3 means you got a TLC phone so you may probably experience some random reboot problem and keyboard missing etc issues. That really depends, according to my test, I have the random reboot problem when I used around 50% (around 600+ apps) of 128Gb (on two iPhone 6+s), and have keyboard issue, missing character issues and bunch of issues after I installed around 800+ apps. (10-20Gb left and crashes on both two 6+). I can say it's a very general issues since I only got two TLC phone, and haven't tested MLC iPhones yet, but it is possible that all the TLC have this risk till you install some amount of apps or used some amount of storage.
    Re: iphone 6 automatically restarting?

  • How do I know if my iPhone is using wifi or cell data?

    I am traveling and am trying to connect to the hotel's wifi - but am not sure it is connected. How do I know if I am using my cell data, or if I am on the hotel's wifi?    

    You will see the wifi bars at the top left of your phone, it will be on every screen .
    No wifi bars you are on cellular.

  • How do I know which Firefox I am using....is it 5, 6, or 7? Thank you so much.

    I am sorry, but I had a stroke in 2001 and it affected the part of my brain that deals with memory, etc. I am doing the best I can with what I give you. I have used Firefox for x# of yrs.....I don't know how long, I just know I like it. I just don't know how to find out which foxfire I am using or how to go about finding the #. I do know at one time I was using foxfire 4.? & I was real happy with it. I don't know how I lost it......anyway, nice chatting with you & I hope you are able to understand my question & can help me. Thank you & have a blessed day. loving you in Christ...........<3........:-)

    Click on the ''''Help'''' menu at the top and choose the last option ''''About Firefox''''. The version is listed second.
    If the menu is not visible please press ''''Alt'''' + ''''H'''' on the keyboard.

  • How do you know what speed discs to use?

    I experienced a problem backing up my iTunes library and found out it might be due to the DVDs that I was using. I have a G4 iMac running 10.3.9. It has a superdrive but I am not sure how to figure out what speed disc to use. Can anyone help? My 16X DVD-Rs aren't working and apparently 16X isn't what I should be using.
    Finally, if 16X aren't right where do I get slower ones? Pretty much all I have seen are 16X.
    Thanks for your help!
    Jenn

    If you are carefull and read the packaging, you will see that some will read that they will burn at 1X-2X-4X-8X or 16X.
    One that comes to mind is the Maxell 16X DVD-R
    Remember that not all media DVD's offer this feature, so take your time and read the package.
    Here is a good guide for quality to use as well.
    http://www.digitalfaq.com/media/dvdmedia.htm
    Don

  • How do I know which Location is being used when set to Automatic

    I have two Locations set up called Home and Music Room. I've selected Automatic in Network Prefernces so my Mac picks the appropriate one.
    Home location - Wi-Fi (1st in the Service order), Ethernet (2nd in the Service order although I'll only be using Wi-Fi with this location)
    Music Room location - Ethernet (1st in the Service order), Wi-Fi (2nd in the Service order)
    So right now, for example, I'm in my music room so I want it to be using the Music Room location and Ethernet but I don't know what it's actually using. In Network preferences, Automatic is shown as the Location, Wi-Fi is at the top, and both Wi-Fi and Ethernet say 'Connected'. If I click on Ethernet to see the details, it does say in the Status area, "Ethernet is currently active and has the IP address 192.168.1.74" so does this mean Ethernet is the one being used?
    Thanks.

    There is no need to have 2 personal keychains. To make your life simpler combine them.
    the login keychain is standard so it is best to keep that. Open the keychain access application, select your named keychain click on any of the keychain entries in the main window then press command +a to select them all then drag them onto your login keychain. You will be prompted to enter the password for your named keychain.
    Then when you have successfully moved them to your login keychain make sure that is set as the default keychain and then you can delete the other keychain. Please not do not delete any of the system keychains.

  • How can I know, which RFC connection is used by my query designer ?

    HI,
    I would like to know,
    which RFC connection is used when i launch the query designer or the report designer or the web designer.
    Thanks.
    Guillaume

    Hi,
    Go to TCODE SM59 and see.
    Regards
    Nilesh

  • With multiple Oracle Clients how do you know which one ADO is using

    Currently using Oracle client 8.1.7 to connect to a 10g database with the following connection string.
    Driver={Microsoft ODBC for Oracle}; CONNECTSTRING=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=127.0.0.1)(PORT=10001))(CONNECT_DATA=(SERVICE_NAME=Falcon2))); uid=Falcon;pwd=*******;"
    If I add a second, newer client, how do I tell ADO to use the newer client?
    Thanks,
    Dave

    Go to icloud.com, sign into each of your iCloud accounts and see which one(s) contain your data.

  • How do I know quiz results per question using Javascript

    We have some quizzes in Captivate and we would like to extract quiz results per question so that we know which question the user did correct and which one was incorrect. The requirement is that we do not want to code inside Captivate as the Captivate movies are provided by the users, so all code needs to be done would be in Javascript on the HTML page.
    Any ideas are welcome.
    Thank you
    Kirmani

    Have a look at Jim Leichliter's blog site. Lately he published a video course about using JS in Captivate, that could be useful.
    http://captivatedev.com/2014/01/02/javascript-video-series-adobe-captivate-7/
    Lilybiri

Maybe you are looking for

  • Moving Home - at my wits end!

    I placed a moving home order on the 12th April for both phone and broadband with an installation date of the 29th April. I ONLY placed my order with BT because they had the quickest installation dates..hah!  We were moving from one rural location to

  • Advance payment reg

    Hi SAP Gurus, Tcode F-47 is not allowing advance payment for Asset PO.Then I made suppressed field as optional . Then also I am not able to get Asset number filed in the F-47.Can you pl.throw some light on this issue. Thanks in advance

  • 2007 outlook locks up or does not retrieve mail

    Hi, I am not a computer person, so please bear with me.  I have recently been experiencing problems with 2007 Outlook. It will just spin with the message "connecting to server".  A full reboot is required to end this.  It also doesn't always retrieve

  • Packet Loss on Xen and Coherence

    We are currently experiencing packet loss issues with Coherence 3.4.2 during the datagram test. Packet loss statistics are as follows: Rx from publisher: /10.96.67.169:9999 elapsed: 149384ms packet size: 1468 throughput: 66 MB/sec 46889 packets/sec r

  • Read proxy class data

    HI All , there is webservice which is defined on j2ee (had logical port on lpconfig and proxy class ) and we need to read it in report how i can do it ? I am new for this topic Regards Chris Edited by: Chris Teb on Oct 8, 2009 11:08 AM