Connect by hierarchical  and summary

Hi
I must to resolve this problem , but I do not know
SQL> WITH T_TREE AS (
  2   SELECT 5 CD_TYPE_PARENT,
  3          1 CD_EC_PARENT ,
  4          2997660 CD_PARENT,
  5          5 CD_TYPE_CHILD,
  6          2 CD_EC_CHILD,
  7          12239615  CD_CHILD,
  8          1 ID_TYPE_RELATION,
  9          200701  NM_CYCLE ,
10          TO_NUMBER(NULL) NM_CYCLE_END  FROM DUAL
11   UNION
12    SELECT  5,1,2997660,5,4,10509356,1,200701,TO_NUMBER(NULL) FROM DUAL
13   UNION
14    SELECT   5,2,12239615,5,5,13392131,1,200701,TO_NUMBER(NULL) FROM DUAL
15   UNION
16    SELECT  5,2,12239615,5,6, 4701040,1,200701,TO_NUMBER(NULL) FROM DUAL
17   UNION
18      SELECT  5,4,10509356,5,7,10812806,1,200701,TO_NUMBER(NULL)  FROM DUAL
19    UNION
20     SELECT 5,5,13392131,5,9,22016740,1,200801,TO_NUMBER(NULL) FROM DUAL
21    UNION
22    SELECT   5,4,10509356,5,8, 7769790,1,200701,TO_NUMBER(NULL)   FROM DUAL)
23    SELECT * FROM T_TREE;
CD_TYPE_PARENT CD_EC_PARENT  CD_PARENT CD_TYPE_CHILD CD_EC_CHILD   CD_CHILD ID_TYPE_RELATION   NM_CYCLE NM_CYCLE_END
             5            1    2997660             5           2   12239615                1     200701
             5            1    2997660             5           4   10509356                1     200701
             5            2   12239615             5           5   13392131                1     200701
             5            2   12239615             5           6    4701040                1     200701
             5            4   10509356             5           7   10812806                1     200701
             5            4   10509356             5           8    7769790                1     200701
             5            5   13392131             5           9   22016740                1     200801
7 rows selected
select  CD_EC_PARENT,CD_EC_CHILD
22  from T_TREE t1
23   sTART WITH CD_EC_PARENT  = 1
24   connect by prior  t1.CD_EC_CHILD =  t1.CD_EC_PARENT
25   order siblings by t1.CD_EC_PARENT
CD_EC_PARENT CD_EC_CHILD
           1           2
           2           5
           5           9
           2           6
           1           4
           4           7
           4           8
where 1 is parent of 2 and 4
2 is parent of the 5 and 6
4 is parent of the 7 and 8
and 5 is parent 9
I have other table
   SQL> select *
     2    from t_ec_setor_perfil_ciclo w1
     3    where w1.cd_tipo_estrutura_comercial = 5
     4      and w1.cd_estrutura_comercial in (1,2,5,6,4,7,8,9)
     5      and w1.nm_ciclo_operacional = 200803
     6      and w1.cd_perfil = 1
     7      and w1.cd_indicador = 32
CD_TIPO_ESTRUTURA_COMERCIAL CD_ESTRUTURA_COMERCIAL NM_CICLO_OPERACIONAL CD_PERFIL CD_INDICADOR      VL_INDICADOR DT_ULTIMA_ATUALIZACAO
                          5                      1               200803         1           32            120.00 1/22/2008
                          5                      2               200803         1           32            112.00 1/29/2008
                          5                      4               200803         1           32             50.00 1/29/2008
                          5                      5               200803         1           32             95.00 1/29/2008
                          5                      6               200803         1           32            100.00 1/29/2008
                          5                      7               200803         1           32              0.00 1/29/2008
                          5                      9               200803         1           32             30.00 1/29/2008I must to summary by level,
example
level 1 ( 2 and 4 ) relative parent = 1 ==> 112 + 50
level 2 ( 5, 6 ,7 ) relative parent = 1 ==> 95 + 100 + 0
For each parent I must to get only two levels and to sum and group by level
Now, I must to do same algorithm using like parent 2 where
level 1 ( 5 and 6) relative parent = 2 95 + 100
level 2 (9 ) relative parent = 2 ==> 30
Now I must to calculate with parent = 4
level 1 (7) relative a parent = 4 ==> 0
I tried to calculate as
SQL> WITH T_TREE AS (
  2   SELECT 5 CD_TYPE_PARENT,
  3          1 CD_EC_PARENT ,
  4          2997660 CD_PARENT,
  5          5 CD_TYPE_CHILD,
  6          2 CD_EC_CHILD,
  7          12239615  CD_CHILD,
  8          1 ID_TYPE_RELATION,
  9          200701  NM_CYCLE ,
10          TO_NUMBER(NULL) NM_CYCLE_END  FROM DUAL
11   UNION
12    SELECT  5,1,2997660,5,4,10509356,1,200701,TO_NUMBER(NULL) FROM DUAL
13   UNION
14    SELECT   5,2,12239615,5,5,13392131,1,200701,TO_NUMBER(NULL) FROM DUAL
15   UNION
16    SELECT  5,2,12239615,5,6, 4701040,1,200701,TO_NUMBER(NULL) FROM DUAL
17   UNION
18      SELECT  5,4,10509356,5,7,10812806,1,200701,TO_NUMBER(NULL)  FROM DUAL
19    UNION
20    SELECT   5,4,10509356,5,8, 7769790,1,200701,TO_NUMBER(NULL)   FROM DUAL)
21    SELECT T1.CD_EC_PARENT, LEVEL , SUM(W1.VL_INDICADOR)
22     FROM  T_TREE T1,
23           t_ec_setor_perfil_ciclo w1
24      WHERE  T1.CD_TYPE_CHILD = W1.CD_TIPO_ESTRUTURA_COMERCIAL
25       AND   T1.CD_EC_CHILD = W1.CD_ESTRUTURA_COMERCIAL
26       AND   W1.NM_CICLO_OPERACIONAL = 200803
27       AND   W1.CD_PERFIL = 1
28       AND   W1.CD_INDICADOR = 32
29  sTART WITH CD_EC_PARENT  = 1
30   connect by prior  t1.CD_EC_CHILD =  t1.CD_EC_PARENT
31   GROUP BY T1.CD_EC_PARENT, LEVEL ;
But the result is wrong , I did not to do it
CD_EC_PARENT      LEVEL SUM(W1.VL_INDICADOR)
           4          2                    0
           1          1                  162
           2          2                31200
   Someboy can help me ?
thanks

Maybe [url
http://forums.oracle.com/forums/thread.jspa?messageID=
1850459��]this thread will help you.Regards,
Rob.
Thank you
I neeed
WITH T_TREE AS (
     SELECT 5 CD_TYPE_PARENT,
            1 CD_EC_PARENT ,
            2997660 CD_PARENT,
            5 CD_TYPE_CHILD,
            2 CD_EC_CHILD,
            12239615  CD_CHILD,
            1 ID_TYPE_RELATION,
            200701  NM_CYCLE ,
           TO_NUMBER(NULL) NM_CYCLE_END  FROM DUAL
    UNION
     SELECT  5,1,2997660,5,4,10509356,1,200701,TO_NUMBER(NULL) FROM DUAL
    UNION
     SELECT   5,2,12239615,5,5,13392131,1,200701,TO_NUMBER(NULL) FROM DUAL
    UNION
     SELECT  5,2,12239615,5,6, 4701040,1,200701,TO_NUMBER(NULL) FROM DUAL
   UNION
       SELECT  5,4,10509356,5,7,10812806,1,200701,TO_NUMBER(NULL)  FROM DUAL
     UNION
      SELECT 5,5,13392131,5,9,22016740,1,200801,TO_NUMBER(NULL) FROM DUAL
     UNION
     SELECT   5,4,10509356,5,8, 7769790,1,200701,TO_NUMBER(NULL)   FROM DUAL)
select * from t_tree;     I must to sum by level with two levels below doing join with other table
        1[120]
   2[112]        4[50]  
5[95]     6[100]          7[0]  
|               
|            
9[30]Example :
for Parent 1
Level 1 112 + 50 = 162
Level 2 95 + 100 + 0 ==195
for parent 2
Level 1 95 + 100 = 195
Level 2 30
for prent 4
level 1 = 0
The other Table is
SQL> select *
  2    from t_ec_setor_perfil_ciclo w1
  3    where w1.cd_tipo_estrutura_comercial = 5
  4      and w1.cd_estrutura_comercial in (1,2,5,6,4,7,8)
  5      and w1.nm_ciclo_operacional = 200803
  6      and w1.cd_perfil = 1
  7      and w1.cd_indicador = 32;
CD_TIPO_ESTRUTURA_COMERCIAL CD_ESTRUTURA_COMERCIAL NM_CICLO_OPERACIONAL CD_PERFIL CD_INDICADOR      VL_INDICADOR DT_ULTIMA_ATUALIZACAO
                          5                      1               200803         1           32            120.00 1/22/2008
                          5                      2               200803         1           32            112.00 1/29/2008
                          5                      4               200803         1           32             50.00 1/29/2008
                          5                      5               200803         1           32             95.00 1/29/2008
                          5                      6               200803         1           32            100.00 1/29/2008
                          5                      7               200803         1           32              0.00 1/29/2008
                          Only a tip , Is best to use MODEL ?

Similar Messages

  • Hierarchical and summary 2

    Hi
    In the last week I post a thread about SUM hierarchical ( sum in levels in the tree )
    Re: hierarchical  and summary and division : Query Challenge  2
    With help , I got to do , but the cost is very high, I explain again what I must to do
    I have a table (GRUPO_RELACAO) that save information about parent and child, but in this relation
    each group can to be different sectors, when I must to sum a Sector I can not to sum groups of other
    sector. look example below with respective values
                   1[3]
                /     \  nm_ciclo_fim is not null then 4 do not have parent                     
                 2[1]      4[1]
             5[3]  6[4] 8[2] 7[2]  
             |               
             |            
             11[6]
          9[5]   12[0]
             13[8]   16[4] 1,2,4,5,6,7,8,9 are in SECTOR 16
    11,12,13,16 are in SECTOR 18
    In structure of table (GRUPO_RELACAO) there is a column NM_CICLO_FIM that must to be NULL
    if is not null, then Child is not more relation with parent , in Example 4 was child of 1, but The
    column is filled
    In example below , to show only SECTOR 16
         GROUP     SUM     LEVEL    SECTOR
         1     1     1     16   TEAM OF GROUP 1 ONLY 1 (GROUP 2) because group 4 is not child
         1     12     2     16   NET      (GROUPS 5 AND 6 AND 9 , but no 11 because 11 is sector 18)
         1     16     3     16   NETWORK   (GROUPS 1,2,5,6,9) = 3+1+3+4+5 = 16
         2     7     1     16   TEAM OF GROUP 2
         2     5     2     16   NET OF GROUP 2
         2     8     3     16   NETWORK OF GROUP 2
         3     0     1     16   IS NOT IN TREE BUT IS IN T_ESTRUTURA_COMERCIAL
         3     0     2     16   IDEM ABOVE
         3     0     3     16   IDEM ABOVE
         4     3     1     16   TEAM OF GROUP 4
         4     0     2     16   NET OF GROUP 4
         4     4     3     16   NETWORK OF GROUP 4
         5     0     1     16   TEAM OF GROUP 5 (11 IS SECTOR 18) NO SUM
         5     5     2     16   NET OF GROUP 5  (9 IS SECTOR 16 ) SUM
         5     3     3     16   NETWORK  OF GROUP 5  (5 + 3 ) SELF VALUE
         6     0     1     16
         6     0     2     16
         6     4     3     16
         7     0     1     16
         7     0     2     16
         7     1     3     16
         8     0     1     16
         8     0     2     16
         8     2     3     16
         9     0     1     16
         9     0     2     16
         9     5     3     16
         165     0     1     16 Others groups that are not in tree must to show too
         165     0     2     16 in example only group 16
         165     0     3     16
         193     0     1     16
         193     0     2     16
         193     0     3     16
         194     0     1     16
         194     0     2     16
         194     0     3     16
         705     0     1     16
         705     0     2     16
         705     0     3     16
         706     0     1     16
         706     0     2     16
         706     0     3     16
         714     0     1     16
         714     0     2     16
         714     0     3     16
         715     0     1     16
         715     0     2     16
         715     0     3     16
         803     0     1     16
         803     0     2     16
         803     0     3     16
         804     0     1     16
         804     0     2     16
         804     0     3     16
         805     0     1     16
         805     0     2     16
         805     0     3     16
    Connected to Oracle Database 10g Enterprise Edition Release 10.2.0.2.0
    Connected as PROCSCNOB
    SQL>
    SQL> SELECT T1.CD_EC_MADRINHA,
      2         T1.CD_EC_AFILHADA,
      3         ID_TIPO_RELACAO,
      4         NM_CICLO_FIM
      5   FROM SISSCNOB.GRUPO_RELACAO T1
      6  ORDER BY 1;
    CD_EC_MADRINHA CD_EC_AFILHADA ID_TIPO_RELACAO NM_CICLO_FIM
                 1              2               1
                 1              4               1       200802
                 2              5               1
                 2              6               1
                 4              7               1
                 4              8               1
                 5             11               1
                11              9               1
                11             12               1
                12             13               1
                12             16               1
    11 rows selected
    SQL> SELECT T2.CD_ESTRUTURA_COMERCIAL, T2.CD_SETOR, T2.ID_ESTRUTURA_ATIVA
      2     FROM T_ESTRUTURA_COMERCIAL T2
      3    WHERE T2.CD_TIPO_ESTRUTURA_COMERCIAL = 5
      4      AND T2.CD_ESTRUTURA_COMERCIAL IN (1,2,3,4,5,6,7,8,9,11,12,13,16);
    CD_ESTRUTURA_COMERCIAL CD_SETOR ID_ESTRUTURA_ATIVA
                         1       16                  1
                         2       16                  1
                         3       16                  0
                         4       16                  1
                         5       16                  1
                         6       16                  1
                         7       16                  1
                         8       16                  1
                         9       16                  1
                        11       18                  1
                        12       18                  1
                        13       18                  1
                        16       18                  1
    13 rows selected
    SQL> SELECT T3.CD_ESTRUTURA_COMERCIAL,
      2         T3.NM_CICLO_OPERACIONAL,
      3         T3.CD_INDICADOR,
      4         T3.VL_INDICADOR
      5     FROM T_EC_SETOR_PERFIL_CICLO T3
      6    WHERE  T3.CD_TIPO_ESTRUTURA_COMERCIAL = 5
      7     AND T3.CD_ESTRUTURA_COMERCIAL IN (1,2,3,4,5,6,7,8,9,11,12,13,16)
      8     AND T3.NM_CICLO_OPERACIONAL = 200712
      9     AND T3.CD_PERFIL = 1
    10     AND T3.CD_INDICADOR = 63;
    CD_ESTRUTURA_COMERCIAL NM_CICLO_OPERACIONAL CD_INDICADOR      VL_INDICADOR
                         1               200712           63              3.00
                         2               200712           63              1.00
                         4               200712           63              1.00
                         5               200712           63              3.00
                         6               200712           63              4.00
                         7               200712           63              1.00
                         8               200712           63              2.00
                         9               200712           63              5.00
                        11               200712           63              6.00
                        13               200712           63              8.00
                        16               200712           63              4.00
    11 rows selected
    THE TABLES
    -- In this table ID_TIPO_RELACAO must to be 1 and NM_CICLO_FIM IS NULL
    --- When NM_CICLO_FIM not is null the relation between cd_ec_madrinha and cd_ec_afilhada is break
    WITH GRUPO_RELACAO AS(
    select   1  CD_EC_MADRINHA,
             2 CD_EC_AFILHADA,
             1 ID_TIPO_RELACAO ,
             TO_NUMBER(NULL,0) NM_CICLO_FIM  FROM DUAL UNION
    SELECT   1,4,1,200802 FROM DUAL UNION
    SELECT   2,5,1,TO_NUMBER(NULL,0) FROM DUAL UNION
    SELECT   2,6,1,TO_NUMBER(NULL,0) FROM DUAL UNION
    SELECT   4,7,1,TO_NUMBER(NULL,0) FROM DUAL UNION
    SELECT   4,8,1,TO_NUMBER(NULL,0) FROM DUAL UNION
    SELECT   5,11,1,TO_NUMBER(NULL,0) FROM DUAL UNION
    SELECT   11,9,1,TO_NUMBER(NULL,0) FROM DUAL UNION
    SELECT   11,12,1,TO_NUMBER(NULL,0) FROM DUAL UNION
    SELECT   12,13,1,TO_NUMBER(NULL,0) FROM DUAL UNION
    SELECT   12,16,1,TO_NUMBER(NULL,0) FROM DUAL )
    ---  Here  table master all CD_EC_MADRINHA and CD_EC_AFILHADA from GRUPO_RELACAO
    ---  is in this table , There is data here that are not in table GRUPO_RELACAO
    ----  in JOIN  with GRUPO_RELACAO, the column   ID_ESTRUTURA_ATIVA must to be 1
    ----- When to sum a SECTOR  it must to sum only values of the SECTOR
    --- I can to have Group of a sector that is parent of the other group
    ---  In example I showed  Group 5(group 16) is parent of the group 11 (sector 18)
    -- that is parent of the group 9 (group 16)
    WITH T_ESTRUTURA_COMERCIAL AS(
    select    1 CD_ESTRUTURA_COMERCIAL,      16 CD_SECTOR,1 ID_ESTRUTURA_ATIVA FROM DUAL union
    select    2, 16,1 FROM DUAL UNION
    select    3,16,0 FROM DUAL UNION
    select    4,16,1 FROM DUAL UNION
    select    5,16,1 FROM DUAL UNION
    select    6,16,1 FROM DUAL UNION
    select    7,16,1 FROM DUAL UNION
    select    8,16,1 FROM DUAL UNION
    select    9,16,1 FROM DUAL UNION
    select    11,18,1 FROM DUAL UNION
    select    12,18,1 FROM DUAL UNION
    select    13,18,1 FROM DUAL UNION
    select    16,18,1 FROM DUAL )
    SELECT * FROM T_ESTRUTURA_COMERCIAL
    -- The 3rd and last table
    -----this Table have the values that I must to sum in LEVELS
    WITH T_EC_SETOR_PERFIL_CICLO AS (
    SELECT      1 CD_ESTRUTURA_COMERCIAL, 200712 NM_CICLO_OPERACIONAL,63 CD_INDICADOR ,3.00 VL_INDICADOR FROM DUAL UNION
    SELECT   2,200712,63,1.00 FROM DUAL UNION
    SELECT   4,200712,63,1.00 FROM DUAL UNION
    SELECT   5,200712,63,3.00 FROM DUAL UNION
    SELECT   6,200712,63,4.00 FROM DUAL UNION
    SELECT   7,200712,63,1.00 FROM DUAL UNION
    SELECT   8,200712,63,2.00 FROM DUAL UNION
    SELECT   9,200712,63,5.00 FROM DUAL UNION
    SELECT   11,200712,63,6.00 FROM DUAL UNION
    SELECT   13,200712,63,8.00 FROM DUAL UNION
    SELECT   16, 200712,63,4.00 FROM DUAL )
    SELECT * FROM T_EC_SETOR_PERFIL_CICLOSomebody can help me, because my solution is with COST high
    TIA

    That plan is better, don't know why you did not post
    this follow up in your old thread, where I asked
    whether
    [url=http://forums.oracle.com/forums/message.jspa?m
    essageID=2330090#2330090]42 billion rows
    was roughly the size of the results you expected.
    If you widen your sqlplus window and set linesize
    140 it would look like the output below.
    Unfortunately then we can see things like this
    |  50 |     VIEW                               |
    |   120T|  5474T|
    |   148G (96)|999:59:59 |
    Where I believe the T in 120T stands for
    tera[
    /b] or 120 trillion rows, that is 120,000,000,000,000
    or a right
    shedfull as it is sometimes known. The next step is
    to sort these rows, which could take some time,
    999:59:59
    is the estimate which looks suspiciously like just
    the biggest number the optimizer can produce.
    In your query you have several connect by statements
    but no start withs. This will generate every possible
    permutation
    of the hierarchy, I think in one place the results
    are used as the input of another query that then
    regenerates every
    possible permutation of that hierarchy.
    In these cases I am not really sure what you think
    you are trying to do apart from generate the biggest
    result set
    ever known to mankind. This is what happens to the 14
    row emp table when subjected to some of these
    queries. What
    are the original row counts of the tables you are
    doing this to in the query?
    SQL> select count(*)
    2  from emp
    3  start with mgr is null
    4  connect by mgr = prior empno;
    COUNT(*)
    14
    elect count(*)
    2  from emp
    3  connect by mgr = prior empno;
    COUNT(*)
    39
    di
    Wrote file afiedt.buf
    1  select count(*) from
    2    (
    3    select mgr, empno
    4    from emp
    5    connect by mgr = prior empno
    6    )
    7* connect by mgr = prior empno
    L> /
    COUNT(*)
    261
    The formatted plan
    [pre]
    Execution Plan
    Plan hash value: 3341212558
    | Id  | Operation                              | Name
    | Rows  | Bytes |TempSpc| Cost
    (%CPU)| Time     |
    |   0 | SELECT STATEMENT                       |
    |    48G|  2910G|       |
    150G (95)|999:59:59 |
    1 |  TEMP TABLE TRANSFORMATION             |
    |       |       |       |
    |          |
    OAD AS SELECT                       |
    |       |       |       |
    |          |
    HASH GROUP BY                       |
    |    13 |  2366 |       |
    14  (29)| 00:00:01 |
    4 |     VIEW                               |
    |    13 |  2366 |
    |    13  (24)| 00:00:01 |
    |      NESTED LOOPS OUTER                |
    |    13 |   949 |       |
    13  (24)| 00:00:01 |
    6 |       VIEW                             |
    |    13 |   845 |
    |     8  (38)| 00:00:01 |
    |        SORT UNIQUE                     |
    |    13 |  1150 |       |
    8  (63)| 00:00:01 |
    8 |         UNION-ALL                      |
    |       |       |       |
    |          |
    VIEW                          |
    |    12 |  1092 |       |
    3   (0)| 00:00:01 |
    0 |           NESTED LOOPS                 |
    |    12 |   516 |       |
    3   (0)| 00:00:01 |
    1 |            VIEW                        |
    |    11 |   319 |       |
    3   (0)| 00:00:01 |
    2 |             TABLE ACCESS FULL          |
    GRUPO_RELACAO               |    11 |    88 |       |
    3   (0)| 00:00:01 |
    3 |            TABLE ACCESS BY INDEX ROWID |
    M_ESTRUTURA_COMERCIAL_CAD   |     1 |    14 |       |
    0   (0)| 00:00:01 |
    4 |             INDEX UNIQUE SCAN          |
    I0_ESTRUTURA_COMERCIAL      |     1 |       |       |
    0   (0)| 00:00:01 |
    5 |          HASH JOIN ANTI                |
    |     1 |    58 |       |
    3  (34)| 00:00:01 |
    6 |           VIEW                         |
    |    12 |   660 |       |
    1   (0)| 00:00:01 |
    7 |            NESTED LOOPS                |
    |    12 |   204 |       |
    1   (0)| 00:00:01 |
    8 |             VIEW                       |
    |    11 |    33 |       |
    1   (0)| 00:00:01 |
    9 |              INDEX FULL SCAN           |
    GRP_RELAC_PK                |    11 |    33 |       |
    1   (0)| 00:00:01 |
    0 |             TABLE ACCESS BY INDEX ROWID|
    M_ESTRUTURA_COMERCIAL_CAD   |     1 |    14 |       |
    0   (0)| 00:00:01 |
    1 |              INDEX UNIQUE SCAN         |
    I0_ESTRUTURA_COMERCIAL      |     1 |       |       |
    0   (0)| 00:00:01 |
    2 |           INDEX FULL SCAN              |
    GRP_RELAC_PK                |    11 |    33 |       |
    1   (0)| 00:00:01 |
    3 |       VIEW                             |
    |     1 |     8 |       |
    0   (0)| 00:00:01 |
    4 |        INLIST ITERATOR                 |
    |       |       |       |
    |          |
    TABLE ACCESS BY INDEX ROWID    |
    T_EC_SETOR_PERFIL_CICLO     |     1 |    23 |       |
    0   (0)| 00:00:01 |
    6 |          INDEX RANGE SCAN              |
    I0_SETOR_PERFIL_CICLO       |     1 |       |       |
    0   (0)| 00:00:01 |
    7 |   LOAD AS SELECT                       |
    |       |       |       |
    |          |
    SORT UNIQUE                         |
    |     2 |   129 |       |
    4818K (57)| 16:03:40 |
    29 |     UNION-ALL                          |
    |       |       |       |
    |          |
    VIEW                              |
    |     1 |    59 |       |
    2409K (13)| 08:01:50 |
    31 |       SORT UNIQUE                      |
    |     1 |    81 |       |
    2409K (13)| 08:01:50 |
    32 |        WINDOW SORT                     |
    |     1 |    81 |       |
    2409K (13)| 08:01:50 |
    * 33 |         VIEW                           |
    |     1 |    81 |       |
    2409K (13)| 08:01:50 |
    34 |          SORT UNIQUE                   |
    |     1 |    91 |       |
    2409K (13)| 08:01:50 |
    * 35 |           CONNECT BY WITHOUT FILTERING |
    |       |       |       |
    |          |
    COUNT                       |
    |       |       |       |
    |          |
    VIEW                       |
    |   316M|    26G|       |
    2193K  (4)| 07:18:39 |
    38 |              TABLE ACCESS FULL         |
    SYS_TEMP_0FD9D6A2F_44B054AC |   316M|    26G|       |
    2193K  (4)| 07:18:39 |
    39 |      VIEW                              |
    |     1 |    70 |       |
    2409K (13)| 08:01:50 |
    40 |       SORT UNIQUE                      |
    |     1 |    65 |       |
    2409K (13)| 08:01:50 |
    41 |        WINDOW SORT                     |
    |     1 |    65 |       |
    2409K (13)| 08:01:50 |
    * 42 |         VIEW                           |
    |     1 |    65 |       |
    2409K (13)| 08:01:50 |
    43 |          SORT UNIQUE                   |
    |     1 |    91 |       |
    2409K (13)| 08:01:50 |
    * 44 |           CONNECT BY WITHOUT FILTERING |
    |       |       |       |
    |          |
    COUNT                       |
    |       |       |       |
    |          |
    VIEW                       |
    |   316M|    26G|       |
    2193K  (4)| 07:18:39 |
    47 |              TABLE ACCESS FULL         |
    SYS_TEMP_0FD9D6A2F_44B054AC |   316M|    26G|       |
    2193K  (4)| 07:18:39 |
    48 |   WINDOW BUFFER                        |
    |    48G|  2910G|       |
    150G (95)|999:59:59 |
    49 |    MERGE JOIN SEMI                     |
    |    48G|  2910G|
    |   148G (96)|999:59:59 |
    |     VIEW                               |
    |   120T|  5474T|       |
    148G (96)|999:59:59 |
    51 |      SORT ORDER BY                     |
    |   120T|     9P|
    23P|   148G (96)|999:59:59 |
    52 |       MERGE JOIN OUTER                 |
    |   120T|     9P|       |
    6506M(100)|999:59:59 |
    53 |        SORT JOIN                       |
    |  1900M|    42G|   128G|
    38M  (9)|126:57:43 |
    54 |         VIEW                           |
    |  1900M|    42G|       |
    13M (13)| 46:09:55 |
    55 |          SORT UNIQUE                   |
    |  1900M|    23G|    71G|
    13M (71)| 46:09:55 |
    56 |           UNION-ALL                    |
    |       |       |       |
    |          |
    VIEW                        |
    |   633M|  7853M|       |
    91649 (100)| 00:18:20 |
    |  58 |             TABLE ACCESS FULL          |
    SYS_TEMP_0FD9D6A30_44B054AC |   633M|    50G|       |
    91649 (100)| 00:18:20 |
    |  59 |            VIEW                        |
    |   633M|  7853M|       |
    91649 (100)| 00:18:20 |
    |  60 |             TABLE ACCESS FULL          |
    SYS_TEMP_0FD9D6A30_44B054AC |   633M|    50G|       |
    91649 (100)| 00:18:20 |
    |  61 |            VIEW                        |
    |   633M|  7853M|       |
    91649 (100)| 00:18:20 |
    |  62 |             TABLE ACCESS FULL          |
    SYS_TEMP_0FD9D6A30_44B054AC |   633M|    50G|       |
    91649 (100)| 00:18:20 |
    |* 63 |        SORT JOIN                       |
    |   633M|    40G|    99G|
    18M  (4)| 60:03:28 |
    64 |         VIEW                           |
    |   633M|    40G|       |
    91649 (100)| 00:18:20 |
    |  65 |          TABLE ACCESS FULL             |
    SYS_TEMP_0FD9D6A30_44B054AC |   633M|    50G|       |
    91649 (100)| 00:18:20 |
    |* 66 |     SORT UNIQUE                        |
    |     1 |    14 |       |
    1 (100)| 00:00:01 |
    7 |      TABLE ACCESS BY INDEX ROWID       |
    M_ESTRUTURA_COMERCIAL_CAD   |     1 |    14 |       |
    0   (0)| 00:00:01 |
    8 |       INDEX RANGE SCAN                 |
    I0_ESTRUTURA_COMERCIAL      |   811 |       |       |
    0   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
    14 - access("W1"."CD_TIPO_ESTRUTURA_COMERCIAL"=5
    AND
    "W2"."CD_EC_AFILHADA"="W1"."CD_ESTRUTURA_COMERCIAL")
    15 - access("CD_EC_AFILHADA"="W2"."CD_EC_MADRINHA")
    21 - access("W1"."CD_TIPO_ESTRUTURA_COMERCIAL"=5 AND
    "W2"."CD_EC_MADRINHA"="W1"."CD_ESTRUTURA_COMERCIAL")
    26 - access("W"."CD_TIPO_ESTRUTURA_COMERCIAL"=5 AND
    "T"."CD_EC_AFILHADA"="W"."CD_ESTRUTURA_COMERCIAL"
    AND
    "W"."NM_CICLO_OPERACIONAL"=200712 AND
    "W"."CD_PERFIL"=1 AND ("W"."CD_INDICADOR"=0 OR
    "W"."CD_INDICADOR"=63))
    33 - filter("CD_EC_AFILHADA"<>"PARENT" AND
    "CD_SETOR"=16 AND "ID_ESTRUTURA_ATIVA"=1)
    35 - access("CD_EC_MADRINHA"=PRIOR
    "CD_EC_AFILHADA")
    filter("ID_ESTRUTURA_ATIVA"=1)
    filter("CD_SETOR"=16 AND "ID_ESTRUTURA_ATIVA"=1)
    44 - access("CD_EC_MADRINHA"=PRIOR
    "CD_EC_AFILHADA")
    filter("ID_ESTRUTURA_ATIVA"=1)
    access("T1"."LVL"="T2"."LVL"(+))
    filter("T1"."PARENT"="T2"."PARENT"(+) AND
    "T1"."LVL"="T2"."LVL"(+))
    66 - access("T3"."CD_ESTRUTURA_COMERCIAL"="PARENT")
    filter("T3"."CD_ESTRUTURA_COMERCIAL"="PARENT")
    filter("T3"."CD_SETOR"=16 AND
    "T3"."ID_ESTRUTURA_ATIVA"=1)
    68 - access("T3"."CD_TIPO_ESTRUTURA_COMERCIAL"=5)
    /pre]Hi thank
    In your query you have several connect by statements
    but no start withs. This will generate every possible
    permutationPlease, [b] in my example how can  put a start with, that walk all tree ?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • "Register with ESB" failing, though AS and IS connections are tested and OK

    When trying to deploy my ESB project, in the "Register with ESB" phase I am now all of a sudden getting the following Error (the same project was working fine for months unchanged until today). This is even though the AS and IS connections are tested and still working fine.
    Things that changed today:
    1.Change 1 – when starting JDEV I was prompted to download some Jdev patch/upgrade for some sort of new BPEL modeling framework, so I installed, JDEV asked to reboot so did, JDEV asked to upgrade JDEV from former, so did, JDEV asked for what dir, so went with default .../jdev/system
    2. Change 2: tried also to deploy the standard “Order booking SOA demo” after patching.
    3. The Error message I started getting, both for new and old deployments (that were working fine until today), is below, as is my version information:
    Entity Deployment Failed
    error code: 1000 : 5
    summary: -
    Fix: Contact Oracle Support
    Version:
    ADF Business Components     10.1.3.39.78
    BPEL Designer     10.1.3.1.0 (Build 061009.0802)
    CVS Version     Internal to Oracle JDeveloper (client-only)
    Java™ Platform     1.5.0_06
    Oracle IDE     10.1.3.39.78
    Struts Modeler Version     10.1.3.39.78
    UML Modelers Version     10.1.3.39.78
    Versioning Support     10.1.3.39.78
    Ideas why the "Register with ESB" stopped working even though the AS and IS connections are tested and still working fine?

    maybe this link can help you
    "error code: 0 : 10" when Deploying ESB Project

  • My battery died and then when i charged the phone it is asking me to connect to itunes and restore. if i restore how can i get my data back

    My iphone battery died and on charging the phone it asked me to connect to itunes and restore the phone.
    If i restore the phone how can i get my data back and how can i check when i last backed up my phone

    If you have been syncing regularly as the iphone is designed, then you can sync the data back.
    Regardless you will have to restore the iphone.

  • Connection between O and BP is missing

    Hi,
      When i check inconsistency for a user, i am getting " Connection between "O" and "BP" is missing. When i check the Org.unit in PPOSA_BBP, i could see no BP exists for that Org.unit where user is assigned. I have replicated the org.unit from HR system but yet the BP hasnt been generated. Can you please share your idea on this.
    Regards,
    Prasath J

    Hi Prasath,
    This might be because you need to assign the user to a Purchasing Organisation or a Purchasing Group. If the user do not have BP created then you can do this by using tcode USERS_GEN.
    Go to USERS_GEN and follow below steps :
    1. Select Create User From Existing SU01 user
    2. Enter the org id of the POrg or Pgroup under which you want to assign the user
    3. Select country and execute
    4. In next window one popup will occur, select Area Of User
    5. In next popup enter the user id
    6. Next select the user and click Ok.
    7. This will create a BP and CP for the user and assigns the BP to the Org id of the POrg or Pgroup.
    8. Now check the consistency of the user it will show all green.
    It might give you error like eMail id for BP XXXXX is missing if the SU01 profile of the user does not contain any user id but it is not critical.
    You can open the BP in BP tcode and enter the email id of the user.
    Let us know if it solves your issue.
    Regards,
    Mayur

  • TS1702 I have an Iphone 5  6.01.  I have a notice on my app store that I have an update. Tried to update, but it won't.  Connected to Itunes and tried to download update for App.  I can't do that either.  It won't let me update any of the apps.  What is w

    I have an Iphone 5  6.01.  I have a notice on my app store that I have an update. Tried to update, but it won't.  Connected to Itunes and tried to download update for App.  I can't do that either.  It won't let me update any of the apps.  What is wrong?

    My husband and I are using the same iTunes account on all mac & pc computers, but the libraries are different on each machine.  We always manually manage our music (no auto sync).  iTunes is up to date on the PCs.  My husband uses our joint iTunes account on his pc, but once again, has a different collection in his library from those on the other machines.  He can't load any music from his PC to his iphone 4.  I can load music from my mac library to my iphone 4s, but cannot load from my pc library to my iphone 4s.  How can I switch my main library that it syncs with from the mac to the pc?
    Thanks

  • Dear Apple Support,  Good day to you. This is to report the problem i encountered when i updated my Ipad mini to the new IOS 8.1..  After the update my Ipad restart and after that it appears a picture that need to connect to itunes and need  to resto

    Dear Apple Support,
    Good day to you.
    This is to report the problem i encountered when i updated my Ipad mini to the new IOS 8.1..
    After the update my Ipad restart and after that it appears a picture that need to connect to itunes and need  to restore. So i connect it to itunes and wait to restore my ipad mini because it is not opening.
    After restoring it my ipad is now opening and it is like new that i need to set up again.
    I set up again until i reach the apple id and password.
    I put my below apple ID and password to unlock my ipad but it didn't work. The message i receive is "the apple ID cannot be used to unlock this Ipad.
    What will I do? Please help.
    Thank you
    Sent from my iPhone
    Begin forwarded message:
    From: Apple <[email protected]***>
    Date: October 9, 2013 at 11:53:53 PM GMT+4
    To: ****
    Subject: Your Apple ID was used to sign in to iCloud and iMessage on an iPad mini 
    Dear Leslie J.,
    Your Apple ID was used to sign in to iCloud and iMessage on an iPad mini named “Leslie Joye's iPad”.
    If you have not recently set up an iPad with your Apple ID, then you should change your Apple ID password. Learn more.
    Apple Support
    <Email Edited By Host>

    1. It is never a good idea to include personal info like your email address or Apple ID in a post on an open forum.
    2. The email you received DOES NOT say your Apple ID cannot be used to unlock this iPad. The email informs you that your Apple ID was used to unlock an iPad. Fortunately the iPad is yours. The message confirms that. If your Apple ID was used to unlock an iPad that was not yours your would then know to change your password. Since the iPad is yours you do not need to change your password.
    Is your iPad working?

  • ITunes RADIO is not working.  "iTunes could not connect to the iTunes Store. Make sure your internet connection is active and try again." Try as I may, as many as ten attempts, trying to connect after restart, after shutdown, nothing works. Just so -  iTu

    iTunes RADIO is not working.
    “iTunes could not connect to the iTunes Store. Make sure your internet connection is active and try again.” Try as I may, as many as ten attempts, trying to connect after restart, after shutdown, nothing works. Just so …
    iTunes STORE not “connectable” with my otherwise perfectly-working internet connection, viable, up and running for all other uses.
    Simply put, firstly, I can't connect to the internet when I click on Radio.  People are quite suspicious that this is Apple incompetence or your company's famous arrogance for this commonly-suffered problem that you won't or “can’t” fix.
    Read the many web comments and you won’t be pleased with yourselves: the suspicion is that if you ruin internet radio on iTunes, Apple will somehow make more money on music downloads, etc. Bull.
    Also, thirdly, my old playlist of 20 or so internet radio stations in the Ambient category STILL PLAYS !
    Then fourth, I installed the latest available version of QuickTime Player 7.app Version 7.6.6 but it didn’t solve the problem either. I had QuickTime Player.app Version 10.2, but substituted what Apple website said was the latest, LOWER NUMBERED QuickTime Player version of 7.6.6
    Fifth, I can't connect to iTunes store no matter what I do or what user group's advice I try. So I can’t buy or download anything from iTunes. Bad for business.
    Sixth, I updated to the latest version of iTunes but this weird problem remains. All suggested Apple fixes or user group fixes are useless. Where is Apple’s famous technical competency, vaunted customer support?, and user-friendly product reputation? Get it back, please.
    Solve this problem of yours ASAP for us, your numerous disgruntled, dissatisfied customers of iTunes. You can do better, should, and really –in all fairness- must.
    ===============================================================
    NOTE:  no password for iTunes exists in my Keychain. Is this a problem?
    Apple ACCOUNT ID, and iTunes ID password, works but not to access iTunes with my healthy internet connection.
    Apple store id It works via direct internet connetion but not through iTunes.  Very strange.
    ===============================================================
    FYI, Hardware Overview:
      Model Name:                       MacBook Pro
      Model Identifier:                 MacBookPro8,2
      Processor Name:               Intel Core i7
      Processor Speed:               2 GHz
      Number of Processors:    1
      Total Number of Cores:    4
      L2 Cache (per Core):         256 KB
      L3 Cache:                            6 MB
      Memory:                              16 GB
      Boot ROM Version:            MBP81.0047.B27
      SMC Version (system):      1.69f4
      Serial Number (system):   C0*******F8V
      Sudden Motion Sensor:
      State:   Disabled
    Intel 6 Series Chipset:
      Vendor: Intel
      Product:            6 Series Chipset
      Link Speed:       6 Gigabit
      Negotiated Link Speed:           6 Gigabit
      Description:      AHCI Version 1.30 Supported
    M4-CT512M4SSD2:
      Capacity:           512.11 GB (512,110,190,592 bytes)
      Model: M4-CT512M4SSD2                         
      Revision:           040H   
      Serial Number: 0000000012330912E75A
      Native Command Queuing:    Yes
      Queue Depth:   32
      Removable Media:        No
      Detachable Drive:        No
      BSD Name:         disk0
      Medium Type:      Solid State
      TRIM Support:     Yes
      Partition Map Type:     GPT (GUID Partition Table)
      S.M.A.R.T. status:         Verified
      Volumes:
    disk0s1:
      Capacity:           209.7 MB (209,715,200 bytes)
      BSD Name:         disk0s1
      Content:            EFI
    disk0s2:
      Capacity:           511.25 GB (511,250,432,000 bytes)
      BSD Name:         disk0s2
      Content:            Apple_CoreStorage
    Recovery HD:
      Capacity:           650 MB (650,002,432 bytes)
      BSD Name:         disk0s3
      Content:            Apple_Boot
      Volume UUID:   600737FB-7A29-3BAE-859E-CBFE2E90C39A
    <Edited by Host>

    This my sound too simple, but I just kept clikning on the arrow next to the selected music and it finally "Kicked" in.
    I live in Europe ,So Be persistent and don't give up !  Aug. 2013

  • How to connect my iPhone and iPad to Apple TV

    How to connect my iPhone and iPad to Apple TV

    Connect the iPad and Apple TV to the same WiFi network. Double Tab the home button on the iPad and then swipe your recently used apps from left to right until you see the mirroring icon which looks like a retangle with an up arrow. Tab that icon until you see the Apple TV. Tab Apple TV and slide the slider to the ON position. You should now see your iPad screen on the TV the Apple TV is connected to.

  • How to connect my iPad and iPhone to my new apple tv ?

    how to connect my iPad and iPhone to my new apple tv ?

    Also, make sure that all devices are on the same Wi-Fi network (e.g. not on a "guest" connection), and verify the ATV settings to see that AirPlay (and HomeSharing while you're at it) are turned on.

  • When I try to reset my iPad mini it keeps asking for  a passcode! have tried restoring, connecting to iTunes and looked for the 'set up as new iPad' notification, but nothing is working? can anyone help please?

    I know my passcode is correct but when I try to reset my iPad mini it keeps asking for  a passcode! have tried restoring, connecting to iTunes and looked for the 'set up as new iPad' notification, but nothing is working? can anyone help please?

    If the iPad was running iOS 7,  iCloud: Find My iPhone Activation Lock in iOS 7
    http://support.apple.com/kb/HT5818
    How can I unlock my iPad if I forgot the passcode?
    http://www.everymac.com/systems/apple/ipad/ipad-troubleshooting-repair-faq/ipad- how-to-unlock-open-forgot-code-passcode-password-login.html
    iOS: Device disabled after entering wrong passcode
    http://support.apple.com/kb/ht1212
    How can I unlock my iPad if I forgot the passcode?
    http://tinyurl.com/7ndy8tb
    How to Reset a Forgotten Password for an iOS Device
    http://www.wikihow.com/Reset-a-Forgotten-Password-for-an-iOS-Device
    Using iPhone/iPad Recovery Mode
    http://ipod.about.com/od/iphonetroubleshooting/a/Iphone-Recovery-Mode.htm
    Saw this solution on another post about an iPad in a school environment. Might work on your iPad so you won't lose everything.
    ~~~~~~~~~~~~~
    ‘iPad is disabled’ fix without resetting using iTunes
    Today I met my match with an iPad that had a passcode entered too many times, resulting in it displaying the message ‘iPad is disabled – Connect to iTunes’. This was a student iPad and since they use Notability for most of their work there was a chance that her files were not all backed up to the cloud. I really wanted to just re-activate the iPad instead of totally resetting it back to our default image.
    I reached out to my PLN on Twitter and had some help from a few people through retweets and a couple of clarification tweets. I love that so many are willing to help out so quickly. Through this I also learned that I look like Lt. Riker from Star Trek (thanks @FillineMachine).
    Through some trial and error (and a little sheer luck), I was able to reactivate the iPad without loosing any data. Note, this will only work on the computer it last synced with. Here’s how:
    1. Configurator is useless in reactivating a locked iPad. You will only be able to completely reformat the iPad using Configurator. If that’s ok with you, go for it – otherwise don’t waste your time trying to figure it out.
    2. Open iTunes with the iPad disconnected.
    3. Connect the iPad to the computer and wait for it to show up in the devices section in iTunes.
    4. Click on the iPad name when it appears and you will be given the option to restore a backup or setup as a new iPad (since it is locked).
    5. Click ‘Setup as new iPad’ and then click restore.
    6. The iPad will start backing up before it does the full restore and sync. CANCEL THE BACKUP IMMEDIATELY. You do this by clicking the small x in the status window in iTunes.
    7. When the backup cancels, it immediately starts syncing – cancel this as well using the same small x in the iTunes status window.
    8. The first stage in the restore process unlocks the iPad, you are basically just cancelling out the restore process as soon as it reactivates the iPad.
    If done correctly, you will experience no data loss and the result will be a reactivated iPad. I have now tried this with about 5 iPads that were locked identically by students and each time it worked like a charm.
    ~~~~~~~~~~~~~
    Try it and good luck. You have nothing more to lose if it doesn't work for you.
     Cheers, Tom

  • Since iOS 7.1 my phone won't turn on and is asking me to connect to iTunes. I connect to itunes and it says it needs to be restored. Not sure why. I try to restore it and then it says something went wrong and it won't work. So I've been without my phone

    Since iOS 7.1 my phone won't turn on and is asking me to connect to iTunes. I connect to itunes and it says it needs to be restored. Not sure why. I try to restore it and then it says something went wrong and it won't work. So I've been without my phone for a couple days now. It gives me error code (29). The phone almost reboots and then 3/4 of the way through it gives me the error message.

    If using windows...
    Temporarily disable your firewall and antivirus software and try again...
    http://support.apple.com/kb/TS1379
    See iTunes Connection Issues here...
    iTunes for Windows: Troubleshooting security software issues
    NOTE:
    Make sure you have the Latest Version of iTunes (v11.1.5) Installed on your computer
    iTunes free download from www.itunes.com/download

  • My iphone is stuck,  it says connect to itunes, and when I aconnect it to my pc, my pc says restore data but everything will be erased and I don't wanna lose everything. please help me

    my iphone is stuck,  it says connect to itunes, and when I aconnect it to my pc, my pc says restore data but everything will be erased and I don't wanna lose everything. please help me

    If you have a graphic of iTunes and a cable displayed on your iDevice then it is in Recovery mode.
    Check this to try an "exit"
    http://osxdaily.com/2011/01/08/iphone-recovery-mode/

  • I am trying to connect to FaceTime and I message on my ipad 2 but it wouldn't connect!Changing the DNA number is not working. Any ideas?

    I am trying to connect to FaceTime and I message but I am getting a message check my network setting.i tried changing the Dns number but it's not working.Any ideas

    Do other USB devices work on your MBP?
    Does this USB stick work on other MBPs?
    There is a possibility that the stick requires more power than the MBP delivers.  Try it on a powered hub.
    Ciao.

  • I created an iCloud account and also had to get more space after I have done the purchase, I am unable to backup my phone! I have a stable wifi connection at home and all I see for hours and hours is "Backing Up .. Estimating time remaining"!!!!! Plz help

    I created an iCloud account and also had to get more space so after I have made the purchase, I am unable to backup my phone! I have a stable wifi connection at home and all I see for hours and hours is "Backing Up .. Estimating time remaining"!!!!! Plz help I'm unable to make the backup as I need to transfer all my data on my new iPhone 5S

    This may be caused by a corrupt existing backup that needs to be deleted, or by data on your device that is causing the backup to fail.  To troubleshoot these, try deleting your last iCloud backup (if you have one) by turning off iCloud Backup in Settings>iCloud>Storage & Backup, then tap Manage Storage, tap your device under Backups, then tap Delete Backup.  Then go back and turn iCloud Backup back on and try backing up again.
    If it still won't back up, you may have an app or something in your camera roll that is causing the backup to fail.  To locate which one, go to Settings>iCloud>Storage & Backup>Manage Storage, tap the name of your device under Backups, under Backup Options tap Show All Apps, then turn them all to Off (including camera roll) and try backing up again.  If the backup is successful, then the camera roll and/or one of your apps is causing the backup to fail and you'll have to located by process of elimination. Turn the camera roll On and try backing up again.  If it succeeds, turn some of your apps to On and try backing up again.  If it succeeds again, turn some more apps to On then try again; repeat this process until it fails.  Eventually you'll be able to locate the problem app and exclude it from your backup.
    In the meantime you can back up your phone to your computer by connect it, opening iTunes and going to File>Devices>Back Up.  Also be sure to transfer your purchases (File>Devices>Transfer Purchases).  Then set up your new phone and when given the option, choose Restore from iTunes Backup and follow the prompts to restore this backup to your new phone.  This will be much faster than using iCloud anyway.

Maybe you are looking for

  • Migrating E&M immediate start from 2821 VGW to AS5350XM but problems with signalling

    Hi, We currently have 2821 VGW platforms running E&M Immediate start. The T1s go into the DACS and the IP interface connects to the SIP server with a simple number plan. So, when a T1 DS0 signals, the VGW talks to the SIP server, the SIP server does

  • InDesgin 6 PDF Export, File size weirdness

    Hello ive been exporting Docs from inDesign CS5 for ages simple enough - hi quality print, no downsampling, jpeg-hi quality, PDF usually comes out about 4MB So i open the same files in inDesign 6 set my PDF export to above settings, but my PDFs are 1

  • ABAp Key Issue

    Hi ALL I have Install IDES 4.7 in my home pc and when i try to do ABAP Practice on the server ( SE11, SE38,  etc)  It Say that I am Not authorised develeoper . It demands Access key ..   Kindly provide me the key so that i can do ABAP Programming

  • Java System design Question

    Hi, I am new programmer and have been assigned the task of replacing an old system with a new one . The old system was done using Access 97 VBA. Both the backend(database) and the frontend ( in Access VBA). It is basically a database system which, re

  • Help my ipod has blank screen!!!

    hellp i was using my ipod touch then its turned off and i was litening to some music the the music still on after it turend off then the music stoped