In-line view

Can I use more than one in-line view in a single SQL query....eg.
SELECT BLAH,BLAH,BLAH
FROM (
SELECT IN-LINE VIEW1 ) A,
(SELECT IN-LINE VIEW 2)B, TABLE1 T
WHERE A.COL1 = B.COL1
AND A.COL1 = T.COL1
Thanks in anticipation

Can I use more than one in-line view in a single SQL queryLooks good ;) :
SQL> SELECT *
  2    FROM (SELECT *
  3            FROM emp) a,
  4         (SELECT *
  5            FROM emp) b,
  6         emp t
  7   WHERE a.ename = b.ename AND a.ename = t.ename
  8  /
14 rows selected.
Execution Plan
Plan hash value: 729292791
| Id  | Operation                     | Name        | Rows  | Bytes | Cost (%CPU)| Time     |
|   0 | SELECT STATEMENT              |             |    14 |  1596 |     7  (15)| 00:00:01 |
|*  1 |  HASH JOIN                    |             |    14 |  1596 |     7  (15)| 00:00:01 |
|*  2 |   HASH JOIN                   |             |    14 |  1064 |     5  (20)| 00:00:01 |
|   3 |    TABLE ACCESS BY INDEX ROWID| EMP         |    14 |   532 |     2   (0)| 00:00:01 |
|*  4 |     INDEX FULL SCAN           | EMP_SAL_IDX |    13 |       |     1   (0)| 00:00:01 |
|   5 |    TABLE ACCESS BY INDEX ROWID| EMP         |    14 |   532 |     2   (0)| 00:00:01 |
|*  6 |     INDEX FULL SCAN           | EMP_SAL_IDX |    13 |       |     1   (0)| 00:00:01 |
|   7 |   TABLE ACCESS BY INDEX ROWID | EMP         |    14 |   532 |     2   (0)| 00:00:01 |
|*  8 |    INDEX FULL SCAN            | EMP_SAL_IDX |    13 |       |     1   (0)| 00:00:01 |
Predicate Information (identified by operation id):
   1 - access("EMP"."ENAME"="T"."ENAME")
   2 - access("EMP"."ENAME"="EMP"."ENAME")
   4 - filter("EMP"."ENAME" IS NOT NULL)
   6 - filter("EMP"."ENAME" IS NOT NULL)
   8 - filter("T"."ENAME" IS NOT NULL)

Similar Messages

  • Reg: fetch the data by using item_id which is retuned by In line View Query

    Hi all,
    create table xxc_transactions(type_id number,trx_line_id number ,item_id number,org_id number);
    insert into xxc_transactions values(null,null,null,null);
    create table xxc_items1(item_id number,org_id number,item_no varchar2(10));
    insert into xxc_items1 values(123,12,'book');
    create table xxc_headers(header_id number,order_id number);
    insert into xxc_headers values(null,null);
    create table xxc_lines(header_id number,item_id number,line_id number);
    insert into xxc_lines values(null,null,null);
    create table xxc_types_tl(transaction_id number,NAME varchar2(10));
    insert into xxc_types_tl values(106,'abc');
    create table xxc_quantity(item_id number);
    insert into xxc_quantity values (123);
    create table xxc_quantity_1(item_id number);
    insert into xxc_quantity_1 values (123);
    SELECT union_id.item_id,
           b.org_id,
           e.name,
           fun1(union_id.item_id) item_no
    FROM   xxc_transactions a,
           xxc_items1 b,
           xxc_headers c,
           xxc_lines d,
           xxc_types_tl e,
           (SELECT item_id
            FROM   xxc_quantity
            WHERE  item_id = 123
            UNION
            SELECT item_id
            FROM   xxc_quantity_1
            WHERE  item_id = 123
            UNION
            SELECT item_id
            FROM   xxc_transactions
            WHERE  item_id = 123) union_id
    WHERE  a.type_id = 6
           AND a.item_id  = b.item_id
           AND union_id.item_id = b.item_id
           AND a.org_id = b.org_id
           AND c.header_id = d.header_id
           AND d.line_id = a.trx_line_id
           AND d.item_id = b.item_id
           AND c.order_id = e.transaction_id
           AND b.org_id = 12
    GROUP  BY union_id.item_id,
              b.org_id,
              e.name
    ORDER  BY union_id.item_id;
    create or replace function fun1(v_item in number)
    return varchar2
    is
    v_item_no
    Begin
       select item_no from xxc_items1
       where item_id=v_item;
       return v_item_no ;
        Exception
         When Others Then
          v_item_no := null;
          return v_item_no;
    END fun1;
    I  need  fetch the data by using item_id which is retuned by In line View Query(UNION)
    item_id  org_id  name    item_no
    123        12        abc       book
    Version: 11.1.0.7.0  and 11.2.0.1.0
    Message was edited by: Rajesh123 Added test cases script
    Message was edited by: Rajesh123 changed Question as fetch the data by using item_id which is retuned by In line View Query(UNION)

    Hi Master , sorry for the late reply and can you please help on this?
    create table xxc_transactions(type_id number,trx_line_id number ,item_id number,org_id number);
    insert into xxc_transactions values(null,null,null,null);
    create table xxc_items(item_id number,org_id number,item_no varchar2(10));
    insert into xxc_items values(123,12,'book');
    create table xxc_headers(header_id number,order_id number);
    insert into xxc_headers values(null,null);
    create table xxc_lines(header_id number,item_id number,line_id number);
    insert into xxc_lines values(null,null,null);
    create table xxc_types_tl(transaction_id number,NAME varchar2(10));
    insert into xxc_types_tl values(106,'abc');
    create table xxc_uinon_table(item_id number);
    insert into xxc_types_tl values(123);
    SELECT   union_id.item_id,
             b.org_id ,
             e.name ,
             fun1(union_id.item_id) item_no   --> to get item_no
             FORM xxc_transactions a,
             xxc_items             b,
             xxc_headers           c,
             xxc_lines             d,
             xxc_types_tl          e,
             ( SELECT item_id
                 FROM   xxc_uinon_table ) union_id
    WHERE    a.type_id= 6
    AND      a.item_id = b.item_id
    AND      union_id.item_id = b.item_id
    AND      a.org_id = b.org_id
    AND      c.header_id = d.header_id
    AND      d.line_id= a.trx_line_id
    AND      d.item_id= b.item_id
    AND      c.order_id= e.transaction_id ---106
    AND      b.org_id = 12
    GROUP BY union_id.item_id,
             b.org_id ,
             e.name
    ORDER BY union_id.item_id;
    Note: xxc_uinon_table is a combination of UNION's
    select 1 from dual
    union
    select 1 from dual
    union
    select no rows returned  from dual;
    I will get 1 from the above Query
    Thank you in advanced

  • Incorrect Results When Using an In-Line View and User Function in 10g

    My developers are complaining of incorrect Select statement results when using an in-line view along with a user defined function. Below is the statement:
    select test_f(wo1)
    from
    (SELECT a.WORK_ORDER_NBR, b.work_order_nbr wo1/*, facility_f(A.FACILITY),
    A.PLANNER, A.WO_STATUS, mil_date(A.WO_STATUS_DATE)*, A.WORK_ORDER_TYPE,
    A.WO_DESCRIPTION
    FROM TIDWOWRK A, TIDWOTSK B
    WHERE B.WORK_ORDER_NBR(+) = A.WORK_ORDER_NBR))
    where wo1 is null;
    Test_f() is a user defined function and the above query returns thousands of rows. It should return 308 rows. It is apparent that the target database is not evaluating the "where wo1 is null;" clause.
    select to_char(wo1)
    from
    (SELECT a.WORK_ORDER_NBR, b.work_order_nbr wo1/*, facility_f(A.FACILITY),
    A.PLANNER, A.WO_STATUS, mil_date(A.WO_STATUS_DATE)*, A.WORK_ORDER_TYPE,
    A.WO_DESCRIPTION
    FROM TIDWOWRK A, TIDWOTSK B
    WHERE B.WORK_ORDER_NBR(+) = A.WORK_ORDER_NBR))
    where wo1 is null;
    In the above query return 308 rows. The user function was replaced by an Oracle function. The Where clause is now evaluated correctly.
    The query is executed from an Oracle 10g R2 database and retrieves data from a 9.2.0.6 database.
    I've seen a little information on Metalink. It appears that there was some trouble in 9i, but were fixed in a 9.2.0.6 patch. I don't see any information about a 10.2.0.2 database.
    Anyone have any experiences or a successful solution. I suspect that I will need to report this to Oracle and wait for a patch.
    Thanks,
    John

    I can only think of two reasons for this behaviour:
    1) You are executing these two queries from two different users and there is some policy on the table.
    2) The function doesn't do an upper, but returns null a lot of times, even when the input is a not null value, like this:
    SQL> create table tidwowrk
      2  as
      3  select 1 id, 'A' work_order_nbr, 'DST' facility from dual union all
      4  select 2, null, 'TRN' from dual union all
      5  select 3, 'C', 'DST' from dual
      6  /
    Tabel is aangemaakt.
    SQL> create table tidwotsk
      2  as
      3  select 'A' work_order_nbr from dual union all
      4  select 'B' from dual
      5  /
    Tabel is aangemaakt.
    SQL> create or replace function test_f (a in varchar2) return varchar2
      2  is
      3  begin
      4    return case a when 'A' then null else a end;
      5  end;
      6  /
    Functie is aangemaakt.
    SQL> select count(*)
      2    from ( SELECT a.WORK_ORDER_NBR
      3                , test_f(b.work_order_nbr) wo1
      4             FROM TIDWOWRK A
      5                , TIDWOTSK B
      6            WHERE B.WORK_ORDER_NBR(+) = A.WORK_ORDER_NBR
      7              and a.facility in ('DST', 'TRN', 'SUB')
      8         )
      9   where wo1 is null
    10  /
                                  COUNT(*)
                                         3
    1 rij is geselecteerd.
    SQL> select count(*)
      2    from ( SELECT a.WORK_ORDER_NBR
      3                , to_char(b.work_order_nbr) wo1
      4             FROM TIDWOWRK A, TIDWOTSK B
      5            WHERE B.WORK_ORDER_NBR(+) = A.WORK_ORDER_NBR
      6              and a.facility in ('DST', 'TRN', 'SUB')
      7         )
      8   where wo1 is null
      9  /
                                  COUNT(*)
                                         2
    1 rij is geselecteerd.Regards,
    Rob.

  • [8i] Question on hints when there are sub-queries / in-line views

    I've noticed that when I query my database, it seems to default to the RBO rather than the CBO. I've been troubleshooting a huge query that takes a good half an hour to run... First, when I saw it was using the RBO, I added the /*+ CHOOSE */ hint (to my top-level SELECT), but that didn't help much. So, I decided to go through all the sub-queries / in-line views. One of my sub-queries, with no hint, takes 2.5 min. to run. I added the /*+ CHOOSE */ hint to it, and it only took 20 seconds.
    My question is, if I add a hint to the top-level SELECT, does it get applied to every sub-query, or do I need to put that hint in every sub-query as well?

    I just tested this out... I ran a portion of my query with a couple of sub-queries, and the first time, I just put the CHOOSE hint in my top level SELECT statement. The second time, I put it in both the top level and in the SELECT statement of one of the sub-queries. The explain plans are too long to post, but these are the statistics:
    1st run (only 1 hint):
    Statistics
              0  recursive calls
           2345  db block gets
         885019  consistent gets
            681  physical reads
              0  redo size
         185226  bytes sent via SQL*Net to client
          11371  bytes received via SQL*Net from client
            160  SQL*Net roundtrips to/from client
              0  sorts (memory)
              1  sorts (disk)
           2371  rows processed
    timing for: query_timer
    Elapsed: 00:00:29.092nd run: (2 hints)
    Statistics
             14  recursive calls
           2345  db block gets
         885035  consistent gets
            620  physical reads
              0  redo size
         185226  bytes sent via SQL*Net to client
          11371  bytes received via SQL*Net from client
            160  SQL*Net roundtrips to/from client
           4498  sorts (memory)
              1  sorts (disk)
           2371  rows processed
    timing for: query_timer
    Elapsed: 00:00:56.03It looks to me like the first one ran more efficiently. Can someone explain this to me? I figured that putting hints in the sub-queries would, at worst, do nothing, and at best, improve the performance, but it looks like the opposite happened.
    Edited by: user11033437 on Aug 12, 2010 11:17 AM (fixed some info/copy paste error)

  • OBIEE Line Missing from Line View

    Hi:
    OBIEE 11.1.1.6
    When creating a line view from two rows of data points, OBIEE will not draw lines between data points when the data points are unbalanced. Here is an example. Let's say product 1 has sales for Jan, Feb, March, April, May and June. And product 2 has sales for only Jan, March, and May. When I create a line view, OBIEE will plot the data points for product 1 and draw a line connecting the data points. But for product 2, OBIEE will show the data points but will not draw a line connecting the data points.
    Has anyone seen this before? Any solutions?
    Thanks.

    Hi Steve,
    Please run get-oabvirtualdirectory |fl to ensure the URL (Internal URL and External URL) for OAB has been configured. If the URL is not configured, you can use Set-OABVirtualDirectory command to set the URL for them
    Set-OABVirtualDirectory
    http://technet.microsoft.com/en-us/library/bb124707.aspx
    After that, please restart the computer which has Outlook client installed and test the issue again.
    Mike

  • [8i] Performance difference between a view and an in-line view?

    I have a query with a few 'UNION ALL' statements... each chunk of the query that is joined by the 'UNION ALL' references the same in-line view, but in each chunk it is joined to different tables. If I actually create the view and reference it in each chunk, will it still run the query behind the view for each chunk, or will it only do it once? I just want to know if it will improve the performance of my query. And, I'm not talking about creating a materialized view, just a regular one.

    Because of the complexity of my query, I tried out a simple (really simple) example instead...
    First, I created my simple view
    Then, I ran a query with a UNION ALL in it against that view
    Next, I ran the same UNION ALL query, but using in-line views instead of the one I created, and these are the results I got:
    (against the view I created)
    890 rows selected.
    Execution Plan
       0      SELECT STATEMENT Optimizer=RULE
       1    0   UNION-ALL
       2    1     TABLE ACCESS (BY INDEX ROWID) OF 'PART'
       3    2       INDEX (RANGE SCAN) OF 'PART_PK' (UNIQUE)
       4    1     TABLE ACCESS (BY INDEX ROWID) OF 'PART'
       5    4       INDEX (RANGE SCAN) OF 'PART_PK' (UNIQUE)
    Statistics
             14  recursive calls
              0  db block gets
           1080  consistent gets
            583  physical reads
              0  redo size
          54543  bytes sent via SQL*Net to client
           4559  bytes received via SQL*Net from client
             61  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
            890  rows processed
    timing for: query_timer
    Elapsed: 00:00:01.67(with in-line views)
    890 rows selected.
    Execution Plan
       0      SELECT STATEMENT Optimizer=RULE
       1    0   UNION-ALL
       2    1     TABLE ACCESS (BY INDEX ROWID) OF 'PART'
       3    2       INDEX (RANGE SCAN) OF 'PART_PK' (UNIQUE)
       4    1     TABLE ACCESS (BY INDEX ROWID) OF 'PART'
       5    4       INDEX (RANGE SCAN) OF 'PART_PK' (UNIQUE)
    Statistics
              0  recursive calls
              0  db block gets
           1076  consistent gets
            582  physical reads
              0  redo size
          54543  bytes sent via SQL*Net to client
           4559  bytes received via SQL*Net from client
             61  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
            890  rows processed
    timing for: query_timer
    Elapsed: 00:00:00.70Here, it appears that the explain plans are the same, though the statistics and time show better performance with using in-line views...
    Next, I tried the same 2 queries, but using the CHOOSE hint, since the explain plans above show that it defaults to using the RBO...
    Here are those results:
    (hint + use view)
    890 rows selected.
    Execution Plan
       0      SELECT STATEMENT Optimizer=HINT: CHOOSE (Cost=1840 Card=1071
               Bytes=57834)
       1    0   UNION-ALL
       2    1     TABLE ACCESS (FULL) OF 'PART' (Cost=920 Card=642 Bytes=3
              4668)
       3    1     TABLE ACCESS (FULL) OF 'PART' (Cost=920 Card=429 Bytes=2
              3166)
    Statistics
             14  recursive calls
              8  db block gets
          12371  consistent gets
          10850  physical reads
              0  redo size
          60726  bytes sent via SQL*Net to client
           4441  bytes received via SQL*Net from client
             61  SQL*Net roundtrips to/from client
              2  sorts (memory)
              0  sorts (disk)
            890  rows processed
    timing for: query_timer
    Elapsed: 00:00:02.90(hint + in-line view)
    890 rows selected.
    Execution Plan
       0      SELECT STATEMENT Optimizer=HINT: CHOOSE (Cost=1840 Card=1071
               Bytes=57834)
       1    0   UNION-ALL
       2    1     TABLE ACCESS (FULL) OF 'PART' (Cost=920 Card=642 Bytes=3
              4668)
       3    1     TABLE ACCESS (FULL) OF 'PART' (Cost=920 Card=429 Bytes=2
              3166)
    Statistics
              0  recursive calls
              8  db block gets
          12367  consistent gets
          10850  physical reads
              0  redo size
          60726  bytes sent via SQL*Net to client
           4441  bytes received via SQL*Net from client
             61  SQL*Net roundtrips to/from client
              2  sorts (memory)
              0  sorts (disk)
            890  rows processed
    timing for: query_timer
    Elapsed: 00:00:02.99Obviously, for this simple example, using the CHOOSE hint caused worse performance than letting it default to the RBO (though the explain plans still look the same to me), but what I find interesting is that when I used the hint, the version of the query using the in-line view became at least equivalent to the one using the view, if not worse.
    But, based on these results, I don't know that I can extrapolate to my complex query... or can I? I'm thinking I'm going to have to actually go through and make my views for the complex query and test it out....

  • Grid Lines View in the Message Viewer?

    Hi-
    Is there anyway to format the message viewer so there are grid lines between the messages and columns I find it easer to read that way...
    Thank you...

    Hi, I'm not sure I understand, but if I do, then no way I know of.

  • How can i stay in time line view when i press record in garageband 1.2 for ipad. I know it's possible because i did it by accident, but i can't figure out how to do it again. It's driving me crazy....please help!!!

    How can I stay in the timeline view and not switch to instrument view when i press the record button in garageband 1.2 on ipad 2 ? I know it's possible because i did it by accident,but now i cannot figure out how to do it again. It's driving me insane......please help!!!

    After having experienced similar problems and having it back to work, I have a few suggestions:
    - Try to find out if the syncing stops at a particular track or song. That might - out of the blue - have gotten corrupted in one way or another. Since that song will not be on the iPod, iTunes will try over and over to put it on and crash in one way or another;
    - reformat the iPod as described in the iTunes 9 crash-thread. It takes time (at first it seems to do nothing, but that is because the green bar is moving with very small steps);
    HTH

  • In line view works in 9i but not 11g

    The following subset of a larger in ilne view works in 9i, but not in 11g. Any thoughts on why it doesn't work in 11g. An 'ORA-00979 : not a group by expression' message is displayed. This error message refers to the last 'group by' statement.
    select a.appl_start_term
    ,count(*)apps
    ,acc_total--, acc_gre
    from datatel_snap.applicant_current_part a
    , datatel_snap.acad_program b
    --accepted
    select appl_start_term
    ,count(*) acc_total
    --, sum(decode(test_grev,null,0,1)) acc_gre
    from datatel_snap.applicant_current_part a
    , datatel_snap.acad_program b
    , datatel_snap.dept c
    where appl_admit_status_cat in ('MASTER')
    and substr(appl_start_term,5,1)= 'F'
    and appl_school='SIS'
    and a.appl_acad_program = b.id
    and b.dept_1 = c.id
    and (derived_appl_disp = 'AC')
    group by appl_start_term
    ) z
    where appl_admit_status_cat in ('MASTER')
    and substr(a.appl_start_term,5,1)= 'F'
    and appl_school= 'SIS'
    and a.appl_acad_program = b.id
    and a.appl_start_term = z.appl_start_term(+)
    group by a.appl_start_term ,acc_total--, acc_gre
    order by 1
    Edited by: user8377830 on Jul 17, 2010 10:05 AM
    Edited by: user8377830 on Jul 17, 2010 10:10 AM

    Fine, you shoud do do either:
    - a group by "acc_total" or
    - use an aggregate function on "acc_total" (like: sum(acc_total), max(acc_total) etc.)
    Edited by: user11268895 on Jul 17, 2010 7:14 PM
    sorry id didn't read carrefully your statement...
    Try to prefix the column acc_total with "z." (both in the select and in the group by expression)
    SELECT   a.appl_start_term, COUNT (*) apps, z.acc_total              --, acc_gre
        FROM datatel_snap.applicant_current_part a,
             datatel_snap.acad_program b,
    --accepted
              SELECT   appl_start_term, COUNT (*) acc_total
    --, sum(decode(test_grev,null,0,1)) acc_gre
              FROM     datatel_snap.applicant_current_part a,
                       datatel_snap.acad_program b,
                       datatel_snap.dept c
                 WHERE appl_admit_status_cat IN ('MASTER')
                   AND SUBSTR (appl_start_term, 5, 1) = 'F'
                   AND appl_school = 'SIS'
                   AND a.appl_acad_program = b.ID
                   AND b.dept_1 = c.ID
                   AND (derived_appl_disp = 'AC')
              GROUP BY appl_start_term) z
       WHERE appl_admit_status_cat IN ('MASTER')
         AND SUBSTR (a.appl_start_term, 5, 1) = 'F'
         AND appl_school = 'SIS'
         AND a.appl_acad_program = b.ID
         AND a.appl_start_term = z.appl_start_term(+)
    GROUP BY a.appl_start_term, z.acc_total                              --, acc_gre
    ORDER BY 1.. and use different aliases in your subquery (not the same a the main one).
    Edited by: user11268895 on Jul 17, 2010 7:23 PM

  • Off line viewing of sent messages stored in ICloud.

    I would like to store sent messages on the server but also keep a copy on my mac for offline usage.  Is this possible?

    Hi Peter
    No unfortunately I didn't find a solution. I think it's a problem of GMail because this happens also in the webmail of my google account. So Mail is not the problem.
    Other strange behaviour, my sent messages are duplicated in the draft box.
    I didn't have time to go to my account in line yet.
    I think the problem must be solved in your Gmail account on the web.
    I let you know if it can be resolved there
    Cathy

  • Download Tutorials for Off-line Viewing

    Hi
    I am new to Aperture 2 and keen to learn more. I have an hours journey in the morning on public transport and this would be a perfect time to watch tutorials (off line). Does anyone know whether there's a way of downloading Apple's Aperture tutorials so that I can do this?
    Many thanks
    Jim

    Apple has made them available as podcasts.
    iTunes Store link:
    http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=286469798&subMe diaType=Video
    -- chaos pilot

  • A In-line view query works with 8.1.6 but returns ORA-1008 with 8.1.7

    Hello Gurus,
    The following query works fine with 8.1.6 but returns
    ORA-1008: not all variables bound
    with 8.1.7.
    Here is the query:
    SELECT y.node_id , y.parent_node_id
    FROM ( SELECT x.node_id
    ,x.parent_node_id
    FROM ( SELECT a.node_id
    ,a.parent_node_id
    FROM xor_hs_base_details a
    WHERE a.node_id <>
    a.parent_node_id
    AND a.base_id=1
    ) x
    CONNECT BY PRIOR x.node_id =
    x.parent_node_id
    START WITH x.parent_node_id = 1
    ) y
    WHERE y.node_id IN ( SELECT node_id
    FROM xor_hs_transactions
    WHERE hierarchy_id = 1
    AND created_by
    = 'system'
    AND committed_on IS NULL
    Any ideas??
    TIA.
    ...Atul

    After having a closer look at metalink it seems to be obvious, that Forms 6i (8.0.6.) only supports user exits generated with the 8.0.6. precompiler.
    If this is the case new questions follow:
    Is there a way to get a 8.0.6. precompiler?
    Is it possible to connect to a 8.1.5. database with such a user exit? Does anybody have corresponding experiences?
    Our customer uses a 8.1.7. database. What about connecting to that database with the user exit?
    /Ralph

  • Can I do off-line viewing of a Movie rental on windows 8.1?

    I have a Windows 8.1 tablet.  I want to be able to watch a movie on a long airplane ride without having internet access.  Is there a way to rent the movie in iTunes and watch it?
    I downloaded the rental movie.  Once in the air, I tried to run it in iTunes but it did not work.  I then went into Windows Explorer and found the file on my C drive.  I right-moused on the movie and said I wanted to run it in iTunes.  It ran but the sound was not perfectly synchronized with the video and it was frustrating to watch.

    Registration has always been optional, so there is no point in trying. Those pages on the Adobe site are long gone. CS5 crashing is another matter, but without some crash logs and more detailed system information nobody can realyl know. This could be a mundane permissions issue on some files, could be a crash with the hardware acceleration stuff but just the same could be the activation system failing. Impossible to tell based on your limited information.
    Mylenium

  • Polycom VVX500 and VVX600 - Ability to modify line view screen

    Hello-
    We have various Polycom VVX500's and VVX600's in our environment and we are getting complaints from our users that they can't modify or change the screen after pressing the 'home key' twice.  
    I have reviewed multiple manuals and tried to modify the screen with no success.  Is that particular screen tied to the Lync client somehow?  
    Thanks in advance-

    VVX500 and VVX600 run Polycom Unified Communications Software (UCS) firmware other than Lync Phone Edition firmware. So it is not a particular screen to Lync client. I would recommend that you consult the Polycom experts.
    Lisa Zheng
    TechNet Community Support

  • How can I change the view in Show Page Source from one long line to a more readable view

    When using Develop --> Show Page Source in Safari 6.0.1 I get a view of the html that is just one long line. I can scroll along to the right but it is not very easy to use.
    It seems to me that when I first used this feature I had a formatted view, that is the text was broken into separate lines and was easier to read.
    But I think I clicked on something and it change to one line. I can't find a way to change it back.
    Is anyone familiar with this? Or can point me to more information about Show Page Source formatting?
    Thanks.

    Oh, I see the problem.
    The one long line view only occurs when I'm viewing a page locally on my own computer. (When I choose Show Page Source for any page on the internet the display is formatted normally.)
    So obviously if I want to see the code in my own files I can just go open them in the text editor. I used to use View Page Source (previous version of Safari) as a shortcut for a quick peek. If there is a solution to this formatting thing for local files I'd love to know it, otherwise I'll just put it on the you-can't-do-that-anymore list.

Maybe you are looking for

  • Music shows up in iTunes but not on the iPod

    I'm not sure what to do next. One of the CDs I had on my iPod just disappeared the other night. I thought it might have been my deck in my car, so I unplugged it and then searched on the iPod itself for the CD, and it didn't show up there either. So

  • TS1538 itunes won't recognize iphone

    my itunes will not recognize my iphone. there is no devices tab what so ever. i have tried restarting my computer. restarting my phone and reinstalling itunes and nothing is helping. any suggestions?

  • How to do a DW/BI project planing~?

    Dear Expert: If you are the IT Director of a University. how to write a planning document, including all the four steps in the book (The Data Warehouse Lifecycle Toolkit), to define the initial DW/BI project for the enrollment processes (from entranc

  • Error in Master Group creation

    Hi Mahantesh Here, In Master Data while creating Company code data  & account Management tab page in that Reconcilation account option i m not getting what to enter there. Its not accepting any value there like 140000, Pls help me.

  • MSHTML IHTMLTxtRange.pasteHtml() and FEATURE_BROWSER_EMULATION=11001 = wrong html

    If I enable emulation of IE11 for my application in registry here: HKCU\Software\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BROWSER_EMULATION\myAppName.exe and insert html into WinForms WebBrowser control using function IHTMLTxtRange.pas