Outer join does not not as expected left

Hi all

I have it here are three tables with values. Mentioned the under outer join query does not and behave like the inner query.

CREATE TABLE RET_FUND_FEE

(

NPTF VARCHAR2 (8 CHAR),

TPART VARCHAR2 (4 CHAR)

);

CREATE TABLE PART_PTF

(

Mf_Id VARCHAR2 (6 CHAR) NOT NULL,

TPARTS VARCHAR2 (4 CHAR) NOT NULL

);

CREATE TABLE TFC_FUNDS

(

NPTF VARCHAR2 (8 CHAR) NOT NULL,

MULTIFONDS_ID VARCHAR2 (6 CHAR)

);

INSERT INTO RET_FUND_FEE VALUES('111','A');

INSERT INTO RET_FUND_FEE VALUES('111','D');

INSERT INTO RET_FUND_FEE VALUES('111','E');

INSERT INTO PART_PTF VALUES ('MF1', 'A');

INSERT INTO PART_PTF VALUES ('MF1', 'B');

INSERT INTO PART_PTF VALUES('MF1','C');

INSERT INTO TFC_FUNDS VALUES('111','MF1');

INSERT INTO TFC_FUNDS VALUES('111','MF1');

INSERT INTO TFC_FUNDS VALUES('111','MF1');

SELECT A.TPART, B.TPARTS, A.NPTF, B.Mf_Id, C.MULTIFONDS_ID, C.NPTF

OF RET_FUND_FEE A, PART_PTF B, TFC_FUNDS C

WHERE A.NPTF = C.NPTF

AND C.MULTIFONDS_ID = B.Mf_Id

AND A.TPART = B.TPARTS (+)

AND C.MULTIFONDS_ID = 'MF1 '.

AND C.NPTF = '111'

Here, I expect all records in the RET_FUND_FEE table that I am using outer join.

But I'm only corresponding chronogram RET_FUND_FEE, PART_PTF as an inner join. Can you get it someone please let me know what lack us.

Is my version of oracle 11g

SELECT

A.TPART, B.TPARTS, A.NPTF, B.Mf_Id, C.MULTIFONDS_ID, C.NPTF

Of

PART_PTF B

Join

C TFC_FUNDS

on (C.MULTIFONDS_ID = B.Mf_Id

AND C.MULTIFONDS_ID = 'MF1 '.

AND C.NPTF = '111'

)

right outer join

RET_FUND_FEE HAS

on (A.TPART = B.TPARTS

and A.NPTF = C.NPTF) - added as correction

TPART TPARTS NPTF MF_ID MULTIFONDS_ID NPTF
A A 111 MF1 MF1 111
A A 111 MF1 MF1 111
A A 111 MF1 MF1 111
E - 111 - - -
D - 111 - - -

or

SELECT A.TPART, d.TPARTS, A.NPTF, d.Mf_Id, d.MULTIFONDS_ID, d.NPTF

OF RET_FUND_FEE HAS

, (

Select

*

PART_PTF b, TFC_FUNDS C

where B.Mf_Id = C.MULTIFONDS_ID

AND C.MULTIFONDS_ID = 'MF1 '.

AND C.NPTF = '111'

) d

WHERE A.TPART = D.TPARTS (+)

and A.NPTF = D.NPTF (+) - added as a correction

Sorry had to correct the syntax oracle solution.

The first one was bad because it would return also B lines that have no match in C.

Sorry a correction more on these two approaches, missed the second predicate.

Tags: Database

Similar Questions

  • Left Outer Join does not work why?

    Hello

    I have a question I want to return all the id group grp_id table and count and give me a count of all "active" members in the Member table. There are a few members who are not active in the table of members who belong to groups in the grp_id table. I still want a record returned for these grpid, but since there is no active members for these groups, I would like a zero as the mbr_count. An active mbr is the one whose eff_dt is less than the date of the day and whose exp_dt is greater than today's date.

    I have listed the query below, which returns active records mbr, but unfortunately does not return a grpid (as in my example of data) is not an active member (grpid: has ""). I have also provided the DDL for both tables as well as some examples of data that gives me the (Incorrect) results, that I posted. I have also posted what I need (the 'Correct' results).

    Thanks for any help... (I use PL/SQL)

    THE QUERY I USE:
    =============
    SELECT
    G00.grpid,
    Count (M00.grpid) mbr_count
    Of
    g00 grp_id
    LEFT OUTER JOIN
    m00 MBR on
    G00.grpid = m00.grpid
    WHERE
    M00.eff_dt < sysdate
    AND
    M00.exp_dt > sysdate
    GROUP BY
    G00.grpid

    It gives me results like:

    INCORRECT RESULTS:
    ===============
    GRPID MBR_COUNT
    A 2
    B 2
    C 1

    I want to see is:

    CORRECT RESULTS
    ===============
    GRPID MBR_COUNT
    A 2
    B 2
    C 1
    D 0


    Here's the DOF and the sample data:

    create table grp_id (grpid varchar (1))

    insert into grp_id values ('A')
    insert into grp_id values ('B')
    insert into grp_id values ('C')
    insert into grp_id values (')

    Commit

    create table mbr (mbr_name varchar (10), varchar (1) grpid, eff_dt date, exp_dt date)

    insert into values of mbr ('BRAND', 'A', to_date (January 1, 2011 ',' DD-MM-YYYY '), to_date (July 1, 2011 ',' DD-MM-YYYY '))
    insert into values of mbr ('BRAND', 'A', to_date (July 1, 2011 ',' DD-MM-YYYY '), to_date (1 January 2012 ',' DD-MM-YYYY '))

    insert into values of mbr ('MARTY', 'A', to_date (January 1, 2011 ',' DD-MM-YYYY '), to_date (July 1, 2011 ',' DD-MM-YYYY '))
    insert into values of mbr ('MARTY', 'A', to_date (July 1, 2011 ',' DD-MM-YYYY '), to_date (1 January 2012 ',' DD-MM-YYYY '))

    insert into values of mbr ('FRANK', 'B', to_date (January 1, 2011 ',' DD-MM-YYYY '), to_date (July 1, 2011 ',' DD-MM-YYYY '))
    insert into values of mbr ('FRANK', 'B', to_date (July 1, 2011 ',' DD-MM-YYYY '), to_date (1 January 2012 ',' DD-MM-YYYY '))

    insert into values of mbr ('MARY', 'B', to_date (January 1, 2011 ',' DD-MM-YYYY '), to_date (July 1, 2011 ',' DD-MM-YYYY '))
    insert into values of mbr ('MARY', 'B', to_date (July 1, 2011 ',' DD-MM-YYYY '), to_date (1 January 2012 ',' DD-MM-YYYY '))

    insert into values of mbr ('JOHN', 'C', to_date (January 1, 2011 ',' DD-MM-YYYY '), to_date (July 1, 2011 ',' DD-MM-YYYY '))
    insert into values of mbr ('JOHN', 'C', to_date (July 1, 2011 ',' DD-MM-YYYY '), to_date (1 January 2012 ',' DD-MM-YYYY '))

    insert into values of mbr ("NOAM" 'd', to_date (January 1, 2011 ',' DD-MM-YYYY '), to_date (July 1, 2011 ',' DD-MM-YYYY ') ")

    Thanks for the script, shame on the missing semicolon :)

    Your date restrictions are implemented as "filter predicates" rather than "join predicates.
    that is the difference between a place ANDS extra o in the JOIN clause.

    SQL> SELECT
      2  g00.grpid,
      3  count(m00.grpid) mbr_count
      4  FROM
      5  grp_id g00
      6  LEFT OUTER JOIN
      7  mbr m00 on
      8  g00.grpid = m00.grpid
      9  WHERE
     10  m00.eff_dt < sysdate
     11  AND
     12  m00.exp_dt > sysdate
     13  GROUP BY
     14  g00.grpid
     15  /
    
    G  MBR_COUNT
    - ----------
    A          4
    B          4
    C          2
    
    SQL> SELECT
      2  g00.grpid,
      3  count(m00.grpid) mbr_count
      4  FROM
      5  grp_id g00
      6  LEFT OUTER JOIN
      7  mbr m00 on
      8  g00.grpid = m00.grpid
      9  AND
     10  m00.eff_dt < sysdate
     11  AND
     12  m00.exp_dt > sysdate
     13  GROUP BY
     14  g00.grpid;
    
    G  MBR_COUNT
    - ----------
    D          0
    A          4
    B          4
    C          2
    
    SQL> 
    
  • outer join does not give the expected results (missing documents)

    Hello
    I have problem with outer join in OBIEE 10 g.

    I'm testing it on the model of simplified database

    STAT table with some statistics of TYPEs
    stat_date, id_type, num
    ..
    ..
    26/03/2003, 20: 1
    26/03/2003, 21: 1
    26/03/2003, 23: 1
    26/03/2003, 24, 1
    26/03/2003, 25, 1
    ..
    27/03/2003, 22, 1 <-different date here
    ..
    ..

    Table TYPES
    ID_type
    ..
    ..
    20
    21
    22
    23
    24
    25
    ..
    ..


    Physical model
    STAT >-TYPES


    AM.
    F1 (only Digital STAT table column (agg. County))
    D1 (STAT_DATE of the STAT table column only)
    D2 (source TYPES)

    D1 - inner join - < F1
    D2 - left outer join - < F1


    I would like to create simple report filtered by date with number of each type.
    I want to get this result
    ID_type County
    ..     ..
    ..     ..
    20 1
    21 1
    22 null
    23 1
    24 1
    25 1
    ..     ..
    ..     ..


    But I get this
    ID_type County
    ..     ..
    ..     ..
    20 1
    21 1
    23 1
    24 1
    25 1
    ..     ..
    ..     ..

    ID_type 22 is missing


    !!!

    I NORMALLY GET RESULT ONLY IF I DELETE RECORD ' 27/03/2003 22' OF MY FACT TABLE.

    !!!


    I have the filter on the date column D1
    STAT_DATE = 26/03/2003 or STAT_DATE is null


    BI Server running this SQL query


    Select distinct D1.c1 as c1,
    D1. C2 C2
    Of
    (select count (T17840. NUM) in c1.
    T17867.ID_TYPE C2
    Of
    Left outer join of TYPES T17867
    STAT T17840 on T17840.ID_TYPE = T17867.ID_TYPE
    where (T17840. STAT_DATE in (TO_DATE ('2003-03-26', 'YYYY-MM-DD')) or T17840. STAT_DATE is null)
    T17867.ID_TYPE group
    ) D1


    Can you give me some advice?

    Thank you

    Hi cardel,

    I think that you can achieve your goal if you build a dimension of the array STAT form, you can create a table Alias in the physical layer and then to join the table of facts (external to the left). In this way, I think that you can solve your problem.

    Let me know.

    Kind regards
    Gianluca

  • Outer join does not

    Hello

    Pls help me my request. I tried the following, but it does not give the expected results.

    Tab1
    EmplId, RepDt, Code, Hrs
    1/100,1/2009,199,8
    1/100,1/2009,200,4
    1/100,1/2009,255,3
    200,1/1/2009,200,4
    100.5/1/2009,199,8


    Tab2
    EmplId, RepDt, Code, Hrs
    1/100,1/2009,200,6
    200,1/1/2009,200,3

    I need output like this - 4 rows - need of all the rows from TAB1 when EMPLID, REPDT match TAB2, field values: need at a time when Code is also, when emlid, correspondence of the date, the Code missing so need A hrs, display ZERO as Tab2 hours.

    1/100,1/2009,199,8,0 - did not exist is not in tab2, so hrs Tab2 is ZERO
    1/100,1/2009,200,4,6 - Emplid, RepDt, Code match existence in Tab2, Tab1 Hrs 8, 6 Hrs Tab2
    1/100,1/2009,255,3,0 - did not exist is not in Tab2, so Tab2 hrs is equal to ZERO
    200,1/1/2009,200,4,3 - Emplid, Repdt, Code Match existed in Tab2, 4 Hrs of Tab1, Tab2 3 Hrs

    We are in 10g, Oracle.

    I tried the following
    T1. EmplId = T2.emplid AND T1.repdt = T2.repdt AND T1.code, T2.code = (+) - returns the unique corresponding lines, 2 rows.

    Pls help.

    Thanks in advance.

    Published by: NL 23 February 2009 09:20

    Hello

    See the Boneist first message in this thread:

    select t1.emplid, t1.repdt, t1.code, t1.hrs, nvl(t2.hrs, 0)
    from   tab1 t1,
           tab2 t2
    where  t1.emplid = t2.emplid (+)
    and    t1.repdt = t2.repdt (+)
    and    t1.code = t2.code (+)
    and    (t1.emplid, t1.repdt) in (select emplid, repdt
                                     from   tab2)
    order by repdt, emplid, code;
    

    As Boneist said, this fact corresponds to option (b)
    "(b) do just an outer join, with a condition EXISTS (or IN) in the WHERE clause to find corresponding repdts.
    The

    (+)
    

    an outer join are signs.

  • decode in an outer join does not

    Hello
    I have a query which does not work; How to rewrite to make it work?
    Thanks in advance for your suggestions

    SELECT tab1.colA
    tab2.colA
    tab2.colB
    OF tab1
    tab2
    WHERE tab1.colA = tab2.colA (+)
    AND tab1.colB = tab2.colB (+)
    AND decode (tab2.colC, tab2.colD, tab2.colC, 'Y') (+) = 'Y '.
    GROUP BY tab1.colA
    tab2.colA
    tab2.colB

    1 post explain plan
    2. explain what you're trying to do. I have a feeling that you need:

    SELECT  tab1.colA,
            tab2.colA,
            tab2.colB
      FROM  tab1,
            (
             select  colA,
                     colB
               from  tab2
               where decode(tab2.colC,tab2.colD,tab2.colC,'Y') = 'Y'
            ) tab2
      WHERE tab1.colA = tab2.colA(+)
        AND tab1.colB = tab2.colB(+)
        GROUP BY tab1.colA,
              tab2.colA,
              tab2.colB
    /
    

    SY.

  • ORA-01719: outer join operator (+) not allowed in operand of GOLD or IN

    I'm migrating a stored procedure (package) in Oracle 11 g.  The SQL has an outer join, combined with a "GOLD":

    Select a.row1, a.row2, b.row3, b.row4, c.row5, c.row6

    schema1.table1 a, schema1.table2 b, schema2.table3 c

    where

    ((c.orgunit = a.org (+) and b.newaccount (+) and TO_CHAR(c.createdatetime,'MM/DD/YYYY = c.account and c.feed = 'FOO' ') = TO_CHAR (SYSDATE, ' DD/MM/YYYY'))

    or

    ((c.feed = 'BAR' and c.orgunit = a.org (+) and c.account b.newaccount (+) and TO_CHAR(c.createdatetime,'MM/DD/YYYY =') = TO_CHAR (SYSDATE, ' DD/MM/YYYY'));

    The error is:

    ORA-01719: outer join operator not allowed in operand of GOLD or IN

    * Cause: Outer join appears in a clause or.

    * Action: If A and B are predicates, to achieve the effect of (has or B).

    I do not understand how to apply the suggested action to my query above.  Can anyone provide a solution or a workaround?

    Thank you.

    your base table is c, a and b must be attached to the left

    Select a.row1, a.row2, b.row3, b.row4, c.row5, c.row6

    of schema2.table3 c

    Join schema1.table1 left a c.orgunit on = a.org

    c.account left join schema1.table2 b = b.newaccount

    where c.createdatetime > = trunc (sysdate)

    and c.createdatetime<>

    and (c.feed = 'FOO' or c.feed = 'BAR');

  • Filters Photoshop CS6 Gallery is visible (not grayed out) but does not work.

    Filters Photoshop CS6 is visible (not grayed out) but does not work.

    I opened in 8-bit RGB jpeg.

    I can use the options of fluidity and blur, but nothing in the Gallery of filters (for example cutting).

    I am running on a MBPro CS6, recently restarted, 16 G of RAM, OSX 10.11.1

    I get no effect for smart objects or rasterized jpegs.

    You will notice the cut filter is selected, but has no effect on the picture.  There is no error message.

    It looks like I could use the filters a month ago.

    Thank you.

    Jeff

    Screen Shot 2015-12-14 at 10.42.37 PM.png

    The preview is enabled.

    Click just to the left of the opening.

  • TV out button does not work on my Satellite Pro M30

    Hello

    I installed Windows XP SP2 and all drivers for M30 but the "TV out" button does not work although I have also installed the tool "Controls Button from Toshiba" (continues to ask to be assigned to a program), it worked before installing the new.

    I also noticed that the "Fn + F5" also does not work too (eg. do not send the signal to the TV).

    Can anyone help?, thanks in advance.

    Hi Karim

    Write about you? :)

    In any case, try to install TOSHIBA common Modules again. Maybe it helps!

  • Microsoft Security Essentials - the planned-out scan does not work.

    In addition to the question about the scheduled scan output after upgrade to Windows 7 to McAfee.Microsoft Security Essentials series instead of McAfee. The scan-out plan does not work.

    Support McAfee tried to straighten my computer of conversation I understood the problem of the update disc. I want to ask a question to the update command:? many problems were very pushed us all after your update. How now to get out of this dung under the name Toshiba upgrades?

    Hey Buddy,

    To be honest I don t know what you re talking about exactly. What has to do with Microsoft Security Essentials McAfee?

    As far as I know it s recommended using a security program only. You must use a Microsoft or McAfee, but not both!

  • SideWinder X 4 does not disable the left windows key in games

    SideWinder X 4 does not disable the left windows key in games.

    When on the windows desktop, he will have the disabled windows key and a small box will popup in the lower right corner, saying he is.
    But if I press it, then in a game (fullscreen), it will be the game tab down, put me to what is "beneath" and open the start menu.
    I tried both Intellitype 8.2 and the latest Microsoft Mouse and keyboard Center but they both react in the same way.
    The Bank or the profile is set to number 2 (game) and of course, the windows key is disabled in the settings. Even if I turn it off on THE 3 banks it'll always exhibit the same behavior.
    I tried to implement the individual profiles for the games that I play as well but no luck there either. And re - install the drivers does not help.
    It completely defeats the purpose of this feature. Ideally, she would work on the other hand, being active only in an office environment and disabled in games/full screen applications, but it should at least work as announced, following the rules laid down by the Bank or the current profile.
    In addition, the auto feature does not work with these games or the other and some applications as well. Am I alone in having these problems? I'm ready to completely reinstall windows because it's *.
    Any help/ideas please?
    _____________________________
    On Win 7 Ultimate 64-bit

    I recently came across this question.  There is a mode dial all at the top left of the keyboard.  Make sure that the value is the default mode (mode 1).  I realized that I have to have spent it in mode 2 when I experienced this problem.

  • My shortcuts Office does not, to the left or right click nothing.

    My shortcuts Office does not, to the left or right click nothing.

    My shortcuts Office does not, to the left or right click nothing.

    Suggestions:

    1 rebuild icon cache. Yours could be damaged.

    http://www.SevenForums.com/tutorials/49819-icon-cache-rebuild.html

    2. If this is a recent problem, and if you remember one ate when shortcuts worked ok, do a system restore.
    Choose a date where shortcuts worked as your restore point.
    http://www.howtogeek.com/HOWTO/Windows-Vista/using-Windows-Vista-system-restore/

    3. restore explorer.exe

    Press CTRL + Alt + Delete > Task Manager > processes tab > right click on explorer.exe > click on end process > Applications tab > new task... > in the Open box, type explorer.exe > OK

     
  • Read out loud does not work on protected PDF

    Read out loud does not work on protected PDF

    The document is protected by word ("password protection"). There are two kinds of passwords with a PDF file.

    1. a password to open. This should be used to open the file. The file could have the safety limits.

    2. a password control. This is necessary to change the limits of security.

    If this file has no password open, but it has a password of control. Without it, "accessibility ay cibteby enabled: no authorized (e)" previous lire.

  • Outer join is not retrieve the correct values

    Hi, I have a problem to recover some data from this query with outer join:

    SELECT count (incident_id), range_2 of
    (by selecting range_2 in apps.aaa_table),
    (Select inc.incident_id,
    XXN2B_RESOLUTION_RANGE (2, ROUND (((TO_DATE (inc. INCIDENT_ATTRIBUTE_7, «hh24:mi:ss jj/mm/yyyy»)-inc. INC_RESPONDED_BY_DATE) * 24), 2)) VARIES
    Inc. stuff
    Inc. INVENTORY_ITEM_ID,
    prom_dt. Iptv_Sumptom - S? µpt? µA
    OF cs_incidents_all_b inc.,.
    cs_incidents_all_tl tl,
    cs_sr_type_mapping m,
    fnd_responsibility RESP,
    ntt xxntt.xxntt_incidents_support,
    xxntt.xxntt_incidents ntt_inc,
    XXe.xxe_tt_promitheas_dt prom_dt,
    20th. Xxe_Cs_Int_Sla als
    WHERE inc.incident_id = tl.incident_id
    AND tl. LANGUAGE = 'EL '.
    AND inc.incident_type_id = m.incident_type_id
    AND resp.responsibility_key IN (select SV. S fnd_flex_value_sets FLEX_VALUE, FND_FLEX_VALUES SV
    where s.FLEX_VALUE_SET_NAME = 'XXNTT_RESPONSIBILITIES. '
    AND S.FLEX_VALUE_SET_ID = SV. FLEX_VALUE_SET_ID)
    AND m.responsibility_id = resp.responsibility_id
    AND resp.end_date is null
    AND inc.incident_number = ntt.incident_number (+)
    AND inc.incident_number = ntt_inc.incident_number (+)
    AND inc.incident_id = prom_dt.incident_id (+)
    AND inc.incident_number = sla. Incident_Number (+)
    - and don't like '%0:00% ' TOTAL_INACT_SLA_DURATION
    (Inc. INC_RESPONDED_BY_DATE is not null AND INCIDENT_ATTRIBUTE_7 is not null)
    ) b.
    (select * from xxntt_custom_hierarchy)
    Union
    Select eidos null null omada, null product_categiory, stuff, null, null, inv_item_descripiption, null, tautopoihsh, inv_item_id double null null symptom
    ) c
    where a.range_2 = b.ranges (+)
    and c.INV_ITEM_ID (+) = b.INVENTORY_ITEM_ID
    and c.CATEGORY_ID (+) = b.CATEGORY_ID
    and c.SYMPTOM (+) = b.IPTV_SUMPTOM
    and c.OMADA = 'A '.
    Range_2 group

    This request is composed by 3 dataset: a, b and c

    the data group is a fixed list of values (LOV): range_2 = "0-2h','2-4h','4-6h','6-8h','8-10h','10-12h','12-14h','14-16h','16-18h','18-20h".

    the dataset b retrieve a list of the incident_id and their related ranges (calculated with the XXN2B_RESOLUTION_RANGE function)

    the c dataset is just a filter on the b of dataset to retrieve only the incident_id who belong to the group "A".

    I want to reach is this: always see the full list of values 'range_2', even if I do not have incident_id with a particular range.
    That's why I put the condition: a.range_2 = b.ranges (+)

    .. .but it does not work... I don't see the incident_id which have the scope inside the LOV... instead I want to see also if there is incident_id without a range to the LOV.

    Range_2 grouping, I see:

    ! http://www.freeimagehosting.NET/uploads/d900035c11.jpg!


    Instead of

    ! http://www.freeimagehosting.NET/uploads/99a75dfca4.jpg!

    Can someone help me understand where is the error?

    Thanks in advance

    Alex

    Hi Alex,

    I think you need to externally join the final predicate, thus:

    ..
    and c.OMADA(+) = 'A'
    ..
    

    Concerning
    Peter

  • Join does not work for NULL values on the join condition

    Hello

    I have the following problem.

    SQL > select * from a;

    X Y
    ---------- --------------------
    1
    2
    3
    4

    SQL > select * from b;

    A:
    ---------- --------------------
    1
    2



    SQL > select f.x, f.y, s.b in f, s b
    2 where f.x = s.b (+);
    X Y B
    ---------- -------------------- ----------
    1 1
    2 2
    4
    3




    SQL > select f.x, f.y, s.b in f, s b
    2 where f.x = s.b (+)
    3 and f.y = s.y;

    no selected line


    So now if I include a join condition more where null = null situation arises, it's working now.
    Just tell her not to treat (1 and null) (1 and null) are the same.
    What is the solution. This is an expected behavior.


    Thank you
    Pramod Garre

    Pramod salvation,

    Another way to use the outer join is,

    Select f.x, f.y, s.b
    of a, f, s b
    where f.x = s.b (+)
    and nvl(f.y,0) = nvl (s.y (+), 0);

    Hope this will help you.

    Thank you
    Amit

  • Satellite A80-132 Out TV does not

    Hi all

    I have a problem with the TV S-Video output on my laptop. When I tried first, he worked in black and white (NSTC I guess), but I could not change color (PAL, as I am in the United Kingdom) because the option appears in the Graphics controller properties.

    To make matters worse, after a lot of violin on TV out does not at all. It does not even appear on the screen .

    Techno stuff:
    Win XP SP2
    Graphics Driver V6.14.10.3943 (last version of the Toshiba support website)

    Can anyone help? Any suggestions welcome!

    Thank you very much
    Phil

    Hi, if you go to display properties and 'Advanced' there are options regarding output TV settings. You should be able to PAL/NTSC, including output video overlay if you watch video clips. Also, make sure that your TV is capable of receiving the signals S-video, most don't and only give a true b & w but you can buy a S-Video to Composite converter places like Maplin, that should work.

    Richard S.

Maybe you are looking for