Join on 1 row help need

In a database associated with bad, I need to join A table with table B, where the relationship (apply, no keys) is usually from 1:1, but can be 1:many in some cases. If it is 1:many, I need only return a record (as if it were 1:1) and ignore the rest. Returned check of table B is not serious, but the fields must all be of the same folder. Is there a way to do this?
Here is an example of what I'm trying to do:

ID name
======
1 franc
Joe 2
3 Ralph

ID phone Type AddedDate Notes
==============
12/12/2009 1 the work 555-1234 A note
1 House of the 222-4321 14/11/2009 something
2 House of 434-4343-20/12/2009
3 House 333-3433, 10/30/2009
select * from People A, PhoneNums B
where A.id = B.id
I would like to receive back ONLY 3 elements, one for each record in the table has. For table B, no matter if the join on ID 1 returns the work or home in the join, I just need one of them. If I try something like this...
select * from People A, (select Id, Max(Phone), Max(Type), Max(Notes) From PhoneNums group by Id) B
where A.id = B.id
... Can I get a recording, but the fields might not be the same record, since when I group by Id, Max (Phone) might not be on the same line as Max (Type) etc.

Any suggestions?

One way:

select *
from people a,
     (select id, phone, type, notes
      from (select id, phone, type, notes,
                   row_number() over(partition by id
                                     order by null) rn
            from phonenums)
      where rn = 1) b
where a.id = b.id

John

Tags: Database

Similar Questions

  • Please can someone help, need password CNU9497P2C

    I have the same problem and its driving me crazy... I need the BIOS password because I can't access to this

    [number of Series edited by Moderator]

    Please can someone help, need password

    HP MINI CQ10

    Sweb try.

    e9lovox27e

    3rd letter tiny L.

    4th and 6th letter lowercase o.

    Use this code to go into the BIOS.

    Disable all passwords that are enabled.

    If demand for CURRENT password using this code.

    Request NEW password just press ENTER.

    If asked to hit just to CHECK password to enter.

    Save and exit.

    REO

    I must inform you that these services are not endorsed by HP, and that HP is not responsible for any damages that may occur to your system using these services. Please be aware that you do so at your own risk.

  • SQL help - Need help to rotate the columns to rows

    I have a HughesNet to divide the columns into multiple lines. For example:

    EMP_DEPT

    ROWID empid1 ename1 empid2 ename2 empid2 ename2 empid4 ename4 dept4 dep3 dep2 dept1
    100001 1 'SCOTT' 10 2 'DAVE' 20 3 10 4 20 SMITH "MILLER"
    100002 1 'SCOTT' 10 2 'DAVE' 20 3 'MILLER' 20

    Note: EMP_DEPT do not always have information about the 4 employees settled for example in info only 3 employees rank 2 are there

    I need to convert and insert it into the EMPLOYEE table as follows:

    EMPLOYEE

    EmpID ename dept
    1 SCOTT 10
    2 20 DAVE
    3 MILLER 10
    4 SMITH 20

    1 SCOTT 10
    2 20 DAVE
    3 MILLER 20

    Thank you
    KeV

    Hey Kevin,

    Here's one way:

    WITH t AS (
      SELECT level i FROM dual CONNECT BY level <= 4
    )
    SELECT enty_type, enty_name, enty_id
    FROM (
      SELECT case when mod(t.i,2) = 0 then 'DEPARTMENT'
                  else 'EMPLOYEE'
             end as enty_type
           , case t.i
               when 1 then emp_name1
               when 2 then dept_name1
               when 3 then emp_name2
               when 4 then dept_name2
             end as enty_name
           , case t.i
               when 1 then emp_id1
               when 2 then dept_id1
               when 3 then emp_id2
               when 4 then dept_id2
             end as enty_id
      FROM emp
           CROSS JOIN t
    )
    WHERE enty_id IS NOT NULL
    ;
    

    Another using the MODEL clause:

    SELECT *
    FROM (
      SELECT enty_id, enty_name, enty_type
      FROM emp
      MODEL
      RETURN UPDATED ROWS
      PARTITION BY (pk)
      DIMENSION BY (0 i)
      MEASURES(
         emp_id1, emp_name1
       , emp_id2, emp_name2
       , dept_id1, dept_name1
       , dept_id2, dept_name2
       , cast(null as number(10)) enty_id
       , cast(null as varchar2(200)) enty_name
       , cast(null as varchar2(30)) enty_type
      )
      RULES (
         enty_type[1] = 'EMPLOYEE' , enty_id[1] = emp_id1[0], enty_name[1] = emp_name1[0]
       , enty_type[2] = 'EMPLOYEE' , enty_id[2] = emp_id2[0], enty_name[2] = emp_name2[0]
       , enty_type[3] = 'DEPARTMENT' , enty_id[3] = dept_id1[0], enty_name[3] = dept_name1[0]
       , enty_type[4] = 'DEPARTMENT' , enty_id[4] = dept_id2[0], enty_name[4] = dept_name2[0]
      )
    )
    WHERE enty_id IS NOT NULL
    ;
    

    Published by: odie_63 on 8 Dec. 2010 21:00

  • Help needed - function Delete of ADF

    Hi Experts ADF,

    I'm very big thing back to ADF programming (just 3 weeks exp.), I have a requirement to remove the table row. I use jDev 11g. When I press the button delete it should request confirmation YesNo, if she does so I need to delete and validate. Please find my code below:

    Command button:

    < af:commandToolbarButton actionListener = "#{bindings." Delete.Execute text}"="Remove"binding =" #{backingBeanScope.backing_Home.ctb2} "id ="ctb2">"

    < af:showPopupBehavior popupId = "p8" / >

    < / af:commandToolbarButton >

    Popup:

    < af:popup binding = "#{backingBeanScope.backing_Home.p8}" id = "p8" > "

    < af:dialog binding = "#{backingBeanScope.backing_Home.d2}" id = "d2" title = 'Do you want to delete selected line?' titleIconSource = 'Remove a line' type = 'yesNoCancel"dialogListener =" # ""

    {backingBeanScope.backing_Home.DeleteConfirmation}"/ >}

    < / af:popup >

    Java class:

    public void DeleteConfirmation (DialogEvent dialogEvent) {}

    If (dialogEvent.getOutcome ()! = DialogEvent.Outcome.yes) {}

    return;

    } else {}

    try {}

    BindingContainer links = getBindings();

    String oprb = bindings.getOperationBinding("Delete").toString ();

    OperationBinding deleteBinding = bindings.getOperationBinding ("Delete");

    OperationBinding commitBinding = bindings.getOperationBinding ("Commit");

    Object result = deleteBinding.execute ();

    If (! deleteBinding.getErrors () .isEmpty ()) {}

    return;

    }

    Object commitResult = commitBinding.execute ();

    If (! commitBinding.getErrors () .isEmpty ()) {}

    return;

    }

    return;

    } {} catch (NullPointerException only)

    System.out.println ("NullPointerException:" + no);

    } catch (Exception ex) {}

    System.out.println ("Exception:" + ex);

    }

    Here, I'm getting nullpointer exception on 'OperationBinding deleteBinding = bindings.getOperationBinding("Delete");'

    Please help me solve this problem...

    I thank in advance...

    Have you added to the page linking actions remove and commit?

  • More help needed with generic - or is - this reflection?

    This is a thread of follow-up to Re: need help with generics, I think... in which I ask for help a table abstract data model which itself contains an abstract objects row vector. (This book that happens because I have several table models, which are all very similar, and so I'm abstraction of common characteristics). Answering the question of this thread has been plenty in there, but now I have another.

    One such characteristic is a method that I called createMinRows. Many of my tables use blank lines to "fill in" any space which is not taken by rows with real data, so that the area of the scrolling pane is filled with the table grid. It is purely aesthetic. I have a field of AbstractModel, MIN_ROWS, whose value is set by the constructors of subclasses of AbstractModel. Manufacturers then call createMinRows() to get the necessary number of 'dummy lines' created in the model. This method, of course, must be in AbstractModel. And there is the problem: inside the AbstractModel, we do not know what AbstractRow subclass should be instantiated.

    Here's the code in SSCNE (...) Not compilable...) format:
    import java.util.Vector;
    import javax.swing.*;
    
    abstract class AbstractRow
    {
      protected String field1;
      protected String field2;
    }
    class MyRow extends AbstractRow
    {
      private String field3;
    }
    abstract class AbstractModel<T extends AbstractRow>
    {
      protected Vector<T> rows = new Vector<T>();
      protected int MIN_ROWS;
      protected void createMinRows()
      {
        for (int i = 0; i < MIN_ROWS; i++)
        {
          rows.add(new MyRow());  // this line doesn't compile
        }
      }
    }
    class MyModel extends AbstractModel<MyRow>
    {
      MyModel()
      {
        MIN_ROWS = 10;
        createMinRows();
      }
    }
    public class MakeAbstractRowWork extends JPanel
    {
      public static void main(String[] args)
      {
        javax.swing.SwingUtilities.invokeLater(new Runnable()
        {
          public void run()
          {
            JFrame frame = new JFrame("MakeAbstractRowWork");
            MakeAbstractRowWork pane = new MakeAbstractRowWork();
            pane.setOpaque(true);
            frame.setContentPane(pane);
            frame.setVisible(true);
          }
        });
      }
    }
    I guess I have to pass the class with createMinRows()? This would reflect, right? Is it possible to achieve what I need without thinking - I love Java verification type and everything seems to go when thinking puts his head in the door.

    I'd go with an abstract method that you call in your loop:

    abstract class AbstractModel {
      protected abstract T createEmptyRow();
    }
    
  • Stuck with - update-help needed

    Hello everyone and thanks for reading!

    I have the following problem with the update statement. Tables and data in them are as follows:


    Table 1: XML_TRANSFER
    create table XML_TRANSFER as
    select 111111 TAX_NR, 1 TYPE, 3000 PRIJ, 3000 POBOT from dual union all
    select 222222 TAX_NR, 1 TYPE, 720.7 PRIJ, 350.70 POBOT from dual union all
    select 333333 TAX_NR, 1 TYPE, 2600 PRIJ, 2100 POBOT from dual;
    Table 2: FIR_SET
    create table FIR_SET as
    select 2011 LET, 7 KROG, 111111 TAX_NR, 10 STEV_FAK, 2000 VALUE_ODPR, 0 VALUE_POBOT from dual union all
    select 2011 LET, 7 KROG, 111111 TAX_NR, 11 STEV_FAK, 400 VALUE_ODPR, 0 VALUE_POBOT  from dual union all
    select 2011 LET, 7 KROG, 111111 TAX_NR, 12 STEV_FAK, 400 VALUE_ODPR, 0 VALUE_POBOT  from dual union all
    select 2011 LET, 7 KROG, 111111 TAX_NR, 13 STEV_FAK, 200 VALUE_ODPR, 0 VALUE_POBOT  from dual union all
     
    select 2011 LET, 7 KROG, 222222 TAX_NR, 1 STEV_FAK, 200 VALUE_ODPR, 0 VALUE_POBOT  from dual union all
    select 2011 LET, 7 KROG, 222222 TAX_NR, 2 STEV_FAK, 20.7 VALUE_ODPR, 0 VALUE_POBOT  from dual union all
    select 2011 LET, 7 KROG, 222222 TAX_NR, 3 STEV_FAK, 100 VALUE_ODPR, 0 VALUE_POBOT  from dual union all
    select 2011 LET, 7 KROG, 222222 TAX_NR, 4 STEV_FAK, 400 VALUE_ODPR, 0 VALUE_POBOT  from dual union all
     
    select 2011 LET, 7 KROG, 333333 TAX_NR, 81 STEV_FAK, 2600 VALUE_ODPR, 0 VALUE_POBOT  from dual;
    OK, the tables and data are now set to the logic of "update".

    Look at the data in the XML_TRANSFER table.

    1st row (with TAX_NR = 111111):

    UPDATE statement in this case should work as: the VALUE_ODPR must be the same as VALUE_POBOT in the FIR_SET table.

    This part, I managed to do with this SQL:
    PROCEDURE     xml_update is
    BEGIN
    
    update fir_set an
    set an.value_pobot = an.value_odpr
    
    where let = (select distinct max(let) from fir_set)
    and krog = (select max(krog) from fir_set)
    and
      (select sum(a.VALUE_ODPR)-b.POBOT 
     
      from fir_SET a, xml_transfer b
      WHERE a.tax_nr = b.tax_nr
      and an.tax_nr = a.tax_nr
      group by a.tax_nr,b.POBOT) = 0;
      
      commit;
      end;
    Resoult is like:
    LET                     KROG                  TAX_NR                 STEV_FAK                VALUE_ODPR            VALUE_POBOT                  
    ---------------------- ---------------------- ---------------------- ---------------------- ---------------------- ---------------------- 
    2011                    7                      111111                 10                     2000                   2000  
    2011                    7                      111111                 11                     400                    400
    2011                    7                      111111                 12                     100                    100  
    2011                    7                      111111                 13                     200                    200                
    OK the following example is a little more complicated and I can't understand it. I don't know how to explain it properly... I'll
    Post the resoult and try to explain it:
    LET                     KROG                  TAX_NR                 STEV_FAK                VALUE_ODPR            VALUE_POBOT                  
    ---------------------- ---------------------- ---------------------- ---------------------- ---------------------- ---------------------- 
    2011                    7                      222222                 1                      200                    200  
    2011                    7                      222222                 2                      20.7                   20.7
    2011                    7                      222222                 3                      100                    100  
    2011                    7                      222222                 4                      400                    30   
    So what we need to do, it's that we check is XML_TRANSFER. POBOT - VALUE_ODPR > 0, if it is, then we are updating VALUE_POBOT with VALUE_ODPR.
    In the next line check us again if the above statement is correct, and if we do the same thing. The process will continue as long as the statement
    will be correct.

    If the statement is no longer correct to do this operation: XML_TRANSFER. POBOT - SUM (VALUE_ODPR) (ON THE INSIDE OF THE SAME TAX_NR! Then group by tax_nr!)
    and last update row with resoult. In any case, we can get negative numbers.


    I really do help I explained my problem so that you can understand what I want to achieve. If you have any questions do not hesitate to ask.

    Thank you very much for your help!

    Best regards, Cain!

    Hello

    OK, I think I knew this time:

    update fir_SET an
    set value_pobot =(
                    select case when calc_VALUE_POBOT> 0 then calc_VALUE_POBOT else 0 end
                    from (
                            select
                                a.rowid row_id,
                                case
                                when b.pobot
                                     -   sum(a.value_odpr)
                                         over (partition by a.tax_nr order by a.stev_fak) >=0
                                then value_odpr
                                else value_odpr
                                    +   b.pobot
                                    -   sum(a.value_odpr)
                                        over (partition by a.tax_nr order by a.stev_fak)
                                end as calc_VALUE_POBOT
                            from
                                fir_SET a,
                                xml_transfer b
                            WHERE a.tax_nr = b.tax_nr ) tmp
                    where an.rowid = tmp.row_id
                    )
    where let = (select distinct max(let) from fir_set)
    and krog = (select max(krog) from fir_set)  ;     
    

    Is this ok for you?

    Kind regards
    Sylvie

  • Urgent Dayabase help needed


    HI there help urgently needed

    I'm currently hosts two of our corporate websites, they are similar sites, and both share the same database.

    The database file is in the root directory of the site 1 also pages admin for download from two different sites are also in site 1.

    The problem I have is this: add products to the database via the admin pages products could either be linked to site 1 or site 2, I also use the new version of the download pure asp so I can join the data sheets for the various products.

    Once I have added products for site 1 and click on the product, I am looking for it then gives me a link to where the data sheet is for this site in particular, it's good that the path would be "domainname\pdfs\products", I can then click on the dynamic link returning the file.

    However, IF I added products to pages admin in site1 site2, serach for a product and need to shoot to the top of the data sheet associated to her like this "site2\pdfs\products" URL all in this path is correct except the path must be site1 does not place 2 because that is where all data sheets are stored.

    So, how is it possible to do this.

    Thank you

    John Pepper

    I think that the simple to solve your problem on the Site 2 is to manually change
    dynamic links to point to Site1 by using a full URL.

    I guess only you store the name of the document, if that is the case
    then you probably see something like that for the link:

    ">NAME OF THE LINK

    change to:

    <>
    href =" http://www.SITE1.com \pdfs\products\<%= (RS_YOURNAME. Fields.Item ("YOURCOLUMN"). % Value) > "> K FLAX
    NAME

    Let us know if it works for you.

    "

    "pepps" < [email protected] > wrote in message
    News:eqq0i0$Q15$1@forums. Macromedia.com...
    > HI there help urgently needed
    >
    > I am currently hosts two of our corporate websites, they look a lot like
    > sites Web
    > and both share the same database.
    >
    > The database folder is in the root directory of the site 1 also all the admin
    > pages to download two different sites are also in site 1.
    >
    > The problem I have is this: add products to the database via the
    admin > pages
    > products could either be related to site 1 or site 2, I'm also using
    > the
    > new version of the download pure asp so I can join the technical sheets for the
    > various
    > products.
    >
    > Once I have added products for site 1 and click on the product, I am looking
    > for
    > it then gives me a link to where the data sheet is for this particular
    > site
    > that's the path would be "domainname\pdfs\products", I can then click
    > on the
    > dynamic links that returns the file.
    >
    > IF however I added products through the admin pages site2 to site1,
    > serach
    > for a product and need to shoot to the top of the data sheet associated with the appearance of the
    url > like
    > this "site2\pdfs\products" everything in this path is correct except the
    > path
    > should be site1 place not 2 because that's where all the data sheets are stored
    . >
    > How then is it possible to do this.
    >
    > Thanks
    >
    > John Pepper
    >
    >

    < / [email protected] >

  • XML QUERY HELP NEEDED

    Hello

    Need help with writing a query.
    SQL> SELECT xmlelement("P",xmlforest(P.process_id AS Ppid),
      2   xmlagg(xmlelement("PI",XMLFOREST( PI.question_id AS PIqid,
      3   PI.process_id AS PIpid,
      4   PI.innertext AS PItext),
      5   xmlagg(Xmlelement("PO",xmlforest( PO.option_id AS POoid,
      6   PO.question_id AS POqid,
      7   PO.process_id AS popid
      8   ))
      9  ORDER BY PO.option_id))
     10     ORDER BY PI.question_id ) )
     11     FROM liveProcess_ec P
     12  INNER JOIN vw_liveProcessItem_Sim_v6 PI
     13       ON P.process_id = PI.process_id
     14  LEFT OUTER JOIN vw_liveProcessOption_Sim_v6 PO
     15       ON PI.question_id = PO.question_id
     16  AND PI.process_id      = PO.process_id
     17    WHERE p.process_id   =450
     18  GROUP BY p.process_id,PI.question_id,PI.process_id,PI.innertext
     19    ORDER BY p.process_id;
    SELECT xmlelement("P",xmlforest(P.process_id AS Ppid),
                                    *
    ERROR at line 1:
    ORA-00937: not a single-group group function
    Thanks in advance

    I think you are looking for something like this:

    SQL> SELECT
      2      XMLAgg(
      3        XMLElement("P"
      4          ,XMLElement("Ppid",p.process_id)
      5          ,XMLElement("qcount",100)
      6       ,(SELECT
      7           XMLAgg(
      8             XMLELement("PI"
      9               , XMLElement("PIqid", pi.question_id)
     10               , XMLElement("PIpid", pi.process_id)
     11               , XMLElement("PItext", pi.innertext)
     12               , XMLAgg(
     13               XMLElement("PO"
     14                    ,XMLForest(
     15                     po.option_id "POoid"
     16                   , po.question_id "POqid"
     17                   , po.process_id "POpid"
     18                 ) AS "PO"
     19                     )
     20            ) --xmlagg
     21             ) --PI
     22           ) --xmlagg
     23           FROM
     24           VW_LIVEPROCESSITEM_SIM_v6 pi
     25            , VW_LIVEPROCESSOPTION_SIM_v6 po
     26           WHERE p.process_id=pi.process_id
     27             AND pi.question_id=po.question_id(+)
     28        GROUP BY pi.question_id,pi.process_id,pi.innertext
     29        )--select ended
     30        )
     31      ) xm
     32  FROM
     33    liveprocess_ec p
     34  GROUP BY p.process_id
     35  ORDER BY p.process_id;
    

    output

    450 100 1 450 CBB1015 - Router Firewall Settinngs Process 2 450 Is the customers PC Firewall turned off? 1 2 450 2 2 450 3 450 Advise the customer to turn off the PC Firewall in order to continue. Has this been done? 1 3 450 2 3 450 ... ... ... 16 450 Issue Resolved

  • HP 15-af159nr: HELP need Network Controller, Win 7 64 bit, impossible to find, 15-af159nr

    For some reason I can't find a specific for this laptop network driver. Miss me the network controller and I tried so many drivers but can't find. Please if anyone can help that would be great! It is a win 7 64-bit, network controller driver, the hp 15-af159nr. It is the tactile energy star hp laptop.

    Hello:

    According to the list of parts for your laptop below, it comes with an adapter Broadcom BCM43142 802.11 b/g/n 1 x 1 Wi - Fi and BlueTooth 4.0 m2 combination WLAN.

    http://PartSurfer.HP.com/search.aspx?SearchText=P1A98UA

    These would be wireless and bluetooth, drivers that you need for this model of the wlan card.

    The package contains the Broadcom wireless LAN drivers and utility which are required to enable the LAN adapter wireless Broadcom integrated into laptops supported that run an operating system supported.

    File name: sp70888.exe

    This package contains the Broadcom Bluetooth driver and software for models supported that are running a supported operating system. Broadcom Bluetooth 4.0 driver is required to enable the Broadcom Bluetooth 4.0 devices and is compatible with Broadcom Bluetooth 3.0 and earlier versions.

    File name: sp71440.exe

  • Help needed recovery for Equium A300D - 13 X

    Hi all

    Having experienced too many problems for the list with my satellite a 300 d 13 X, hardware and software, I decided to go ahead with a restore to the factory settings.

    My first step was to create 2 discs recovery DVDs, using the Toshiba Recovery Disk Creator.
    As far as I know, two recovery disks were created with success, insofar as the recovery disc creator has stated as such.

    Not knowing what step to take next, I started the laptop with the fist of the disc in the disc drive, two thinking recovery that it would reset the laptop to its factory settings, but it does not.

    Now, when I start the laptop, I get the following message;

    BOOTMGR is missing
    Press Ctrl + Alt + Delete to restart

    who restarts the laptop showing the above message again.

    By pressing F8 at start up does nothing.

    By pressing F12, multi boot selection, reveals a start with 3 options Menu;
    HDD1: TOSHIBA MK2046GSX-(S1)
    CD/DVD: MAST * ADVD-RAM UJ - 850 S-(PM)
    LAN: Marvell Yukon 88E8040T

    If I select the CD/DVD option, a black screen with the text;

    Windows is loading files

    is shown. I am guessing it is the correct path to recovery.
    However, after the screens following recovery about the language selection utility etc., a text filled with the dialog box

    X:\windows\systems32\cmd.exe

    Cross, but eventually reached a static state line:

    Copy of F:\06948XSP.swm to V:\HDDRecovery\SWImg 1/6

    without to successfully complete the recovery process.

    Any help to fix this would be greatly appreciated.
    Kind regards
    KeV.

    > My first step was to create 2 discs recovery DVDs, using the Toshiba Recovery Disk Creator.
    > As as far as I know, the two recovery disks have been successfully created, insofar as the recovery disc creator has stated as such.

    What to tell buddy you've done everything right.
    The recovery disk was created successfully (you saw a message saying this?).
    Boot from recovery disk should start the collection procedure and you must follow the installation on the screen.
    Usually, this should work.

    The error; BOOTMGR is missing says that boot manager on the HARD disk has been removed and it of not possible to boot from the HARD drive.
    You must boot from the CD you have done; by pressing F12 choose CD/DVD drive

    Try to format the HARD drive using another CD of Windows.
    In this case, you need to set SATA compatibility mode in the BIOS, then you could boot from the WinXP CD.

    After that try the recovery disk again

  • HP Pavilion Notebook - 17-f207: Please help-need driver

    I need driver for

    HP Pavilion Notebook - 17-f207

    hardver id is:

    ACPI\VEN_ASD & DEV_0001
    ACPI\ASD0001
    * ASD0001

    Thanks for the help

    S

    Hello:

    I zipped and attached to the driver that you are interested in below...

    Download and uncompress the file in its folder.

    Don't do anything with the files in the folder.

    Go to Device Manager and click on the device ACPI\VEN_ASD & DEV_0001 who need the pilot.

    Click the driver tab.  Click on set to update driver.

    Select her browse my computer for driver software option and navigate to the driver folder, that you unzipped.

    Make sure that the include subfolders is selected and the driver should install.

    Restart the PC.

  • Help needed interview about a series of Satellite Pro S500-C11

    Hello to all readers,

    Computer problem laptop Satellite Pro S500-C11 series.

    My wife, age 82, died last month. I have his cell phone in front of me with an apparent hardware failure. If I touch the bottom left of the laptop open, while entering text, the cursor jumps all over the screen and the text becomes garbled. I think my left hand wrist needs rest momentarily on the space to the left of the cursor buttons.

    I have some details on the purchase of the guarantee in the form of a contract number: FF5D900C with what I think is the registration number: 1 048 * H.

    The age related hearing problems I have trouble using the phone in an effective way. Is there anything I can communicate with the Service Center Online, please?

    Any help will be greatly appreciated.

    Hello

    Respect! Yet in sufficient form to use computers
    In General if your equipment begins to malfunction, the authorized Toshiba maintainer would be able to solve this problem.

    I don't know if you can contact the ASP mail, but first you must find the ASP in your country of m.
    Here you can find all of the ASP based all over the world:
    http://EU.computers.Toshiba-Europe.com/innovation/generic/ASP_SUPPORT/

    By the way: try to disable the touchpad while typing... you can turn off this Fn + F9 help
    In my case, the cursor jumped because I accidentally touched the touchpad while typing...
    Maybe it helps...

  • Satellite 4090XCDT - Memory Upgrade help needed

    Hello reader,.

    I own a Toshiba Satellite 4090 XCDT notebook and it came originally with windows 98SE and 64 MB of ram, but I installed Windows 2000 pro and I need to upgrade the memory, I did some Google research on the specs of this laptop and found that this machine is capable of 192 MB of ram , but there is one memory slot, how is possible to get this upgrade when require sticks of memory 128 + 64 = 192 MB, that would mean I'd need two memory sticks to reach the range of 192 MB, from what I see here is therefore the only memory of memory bank.

    Could someone please point me in the right direction and provide me a solution to my problem, any help will be greatly appreciated.

    Cheers MagicBytes :D

    When the memory is empty, the amount of memory is reported?

    If its 64 MB, then you simply install a 128 MB module to achieve 192 MB

  • Help needed-bad in compaq 6910p chart

    Dear friends,

    Need support & help, I have Compaq 6910p with Win xp-2, in my laptop there are a few question in graphics.there's background blue & all videos showing bad pixels, I format operating system, reinstall the graphics drivers + updated bios version F.19.if inti any good idea trying to help me...

    Thnks

    Hello

    also update video codecs

    Check external monitor - if everything's ok, this means that your screen is broken

  • Need help, need drivers for HP Pavilion a6202n Desktop PC vista for XP

    Hey can guys, someone help me? I have a HP pavilion a6202n Desktop PC and need the drivers for XP

    Install the chipset driver and RESTART.

    Then install all other drivers.

    NVIDIA nForce 430
    http://www.nvidia.com/object/nforce_winxp_15.24.html

    graphics card driver: NVIDIA GeForce 6150SE
    http://www.nvidia.com/object/winxp_181.22_whql.html

    Audio: ALC888S
    FTP://152.104.238.19/PC/audio/WDM_R214.exe
     
    If necessary:
    LAN Realtek RTL8201N
    http://tinyurl.com/2ca284

    .NET 1.1 (for keyboard)
    http://tinyurl.com/4y9vv

    Original HP multimedia keyboard/mouse drivers
    http://tinyurl.com/ywpftx

    Message edited by dmhoo29 on 08/02/2009 15:52

Maybe you are looking for