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.

Tags: Database

Similar Questions

  • 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.

  • 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

  • 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.

  • 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!

  • 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.

  • 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

  • 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.

  • Satellite P10 TV OUT button does not

    Can someone help me, I recently rebuilt my laptop Satellite P10 and now noticed the TV OUT button on the side right does not work. The OS is XP PRO

    I can use the F5 key, but who want to get this dedicated button works, someone at - it ideas

    See you soon

    Dave

    Hi David,

    When you have rebuilt your laptop you re-install the operating system and all the utilities Toshiba? I think that the button that you are talking about is controlled by the Toshiba EasyKey utility.

    HTH

  • Hi, my Aspire E15 completely off when the charger is out. Does not start without power cord

    I have an Aspire e15 start ES1-512-C5YW which I brought last Monday and it was all fine until yesterday whn the power cord came out pf the socket and wull no longer work on battery.

    I have two acer power cords and it happens with both of them, but the cords work very well with the other Acer I

    Thrre is without a removable battery in this laptop so im a little need help!

    norfolkNman,

    No problem, nobody WANTS their stuff does not work. MOM

    Do you have it up and running rights?

  • AP joined does not WLC

    Hello

    I'm WLC4404 6.0 image under the last one. the AP is does not reach the controller and it says invalid license in the application configuration.

    It is a start of one access point:

    11:05:59.025 Dec 11: % 3-CAPWAP-ERRORLOG: go join a capwap controller

    * 11:05:59.000 11 dec: % CAPWAP-5-DTLSREQSEND: DTLS connection request sent peer_ip: 172.16.140.248 peer_port: 5246

    * 11:05:59.000 11 dec: % CAPWAP-5-CHANGED: CAPWAP changed State to

    * 11:06:02.862 11 dec: % CAPWAP-5-DTLSREQSUCC: DTLS connection created successfully peer_ip: 172.16.140.248 peer_port: 5246

    * 11:06:02.863 11 dec: % CAPWAP-5-SENDJOIN: send request to join 172.16.140.248

    * 11:06:02.863 11 dec: % CAPWAP-5-CHANGED: CAPWAP changed State to ADHERE

    * 11:06:03.619 11 dec: % CAPWAP-5-CHANGED: CAPWAP changed state CFG

    * 11:06:03.764 11 dec: % DTLS-5-ALERT: WARNING received: close notify alert from 172.16.140.248

    * 11:06:03.764 11 dec: % DTLS-5-PEER_DISCONNECT: Peer 172.16.140.248 has closed the connection.

    * 11:06:03.764 11 dec: % DTLS-5-SEND_ALERT: send WARNING: close notify alert at 172.16.140.248:5246

    * 11:06:03.803 11 dec: % CAPWAP-5-CHANGED: CAPWAP changed state of DISCOVERY

    * 11:06:03.803 11 dec: % CAPWAP-5-CHANGED: CAPWAP changed state of DISCOVERY

    * 11:06:13.824 11 dec: % 3-CAPWAP-ERRORLOG: go join a capwap controller

    * 11:06:14.000 11 dec: % CAPWAP-5-DTLSREQSEND: DTLS connection request sent peer_ip: 172.16.140.248 peer_port: 5246

    * 11:06:14.000 11 dec: % CAPWAP-5-CHANGED: CAPWAP changed State to

    * 11:06:18.644 11 dec: % CAPWAP-5-DTLSREQSUCC: DTLS connection created successfully peer_ip: 172.16.140.248 peer_port: 5246

    * 11:06:18.644 11 dec: % CAPWAP-5-SENDJOIN: send request to join 172.16.140.248

    * 11:06:18.644 11 dec: % CAPWAP-5-CHANGED: CAPWAP changed State to ADHERE

    * 11:06:19.587 11 dec: % CAPWAP-5-CHANGED: CAPWAP changed state CFG

    * 11:06:19.722 11 dec: % DTLS-5-ALERT: WARNING received: close notify alert from 172.16.140.248

    * 11:06:19.722 11 dec: % DTLS-5-PEER_DISCONNECT: Peer 172.16.140.248 has closed the connection.

    * 11:06:19.722 11 dec: % DTLS-5-SEND_ALERT: send WARNING: close notify alert at 172.16.140.248:5246

    * 11:06:19.761 11 dec: % CAPWAP-5-CHANGED: CAPWAP changed state of DISCOVERY

    * 11:06:19.761 11 dec: % CAPWAP-5-CHANGED: CAPWAP changed state of DISCOVERY

    All Advisor,.

    Elijah

    The country code has been the problem.  Thank you.

    Brian

Maybe you are looking for

  • Als MusicXML notation

    Finde leider keine possibility, meine Daten als MusikXML zu exportieren. Unter-> 'Care'-> 'Exportieren' there're subparagraph keinen, dass zu exportieren kann xm evil. Wie kann ich das einrichten, dass das ist possible? Habe logic ProX in der Version

  • How to reset the BIOS password in Portege M400?

    I have a Toshiba portage M400locked by password Bioseven I can't access the biosHow can I reset the biosPlease hep meI have important data inside the laptop

  • Satellite 5205-S505 does not illuminate

    Using only the AC power supply with or without the battery from my connected computer is completely dead. If I plug the power supply and let charge the battery for an hour or two to push the button, the hard drive light comes on for 2 seconds, hard d

  • Pavilion p7 - 1226 s video card upgrade

    Summary: I want to improve my system with the highest rated PassMark reference video card that my system will support with my current 300W power supply. Details: I bought a new Pavilion p7 - 1226 s last month with the intention of upgrading the syste

  • I have been experiancing crashes to the desktop when running The Elder Scrolls IV: Oblivion even though he used to work properly on my computer

    I am experiancing crashes to desktop when I try to click on the main menu of the game oblivion. I've had the game for a long time and it worked when I tried it (about a year). But now it crashes whenever I click on something in the main menu. I don't