Refresh code view

sometimes Dreamweawer mix and does not show the color code correctly, especially inside the tag <? php? >. I have found a workaround regarding these 3 simple steps in code view:

  1. Select all
  2. Cup
  3. Dough


Even with this simplicity, it affects my story if I prefer to use something like view > design of Refresh (F5) mode for code view.

DynV,

The dw.reloadCodeColoring () API call is used to update the XML file used to
set the rules for Code coloring, but I think that he also updated the coloration
all pages open.

On Windows, create a page called something like
Reload_Code_Coloring.html in this folder:

C:\Documents and Settings\ [username] \Application Data\Adobe\Dreamweaver
9\Configuration\Commands

You will need to manually create the folder Commands. Open the page and
Paste in the DW following tag:

8.0//dialog">


Reload Code coloring



Stop and restart DW. In DW, use:

Commands > Reload_Code_Coloring

Does it work? If so, then make a copy of this order DW * outside * of
the folder "Application Data" that gets deleted if you need
Uninstall/reinstall.

Note that this will also leave an entry in the history list, but it is
safer a "Cup" of all of the content of you page, it is only one
single entry and it's explicit.

HTH.
Randy

DynV wrote:
> sometimes Dreamweawer mix and does not show the code colors correctly.
> especially inside the tag . I found a solution for this
> involving these 3 simple steps using the code:
>

  1. >
  2. Select all
    >
  3. Cup
    >
  4. Dough
    >

>
> Even with this simplicity, it affects my story if I prefer to use something
> as view > view Refresh (F5) for code view.
>

Tags: Dreamweaver

Similar Questions

  • Reg: Package code to refresh materialized views

    I'm new to pl/sql packages and procedures.i want it running for execution of informatica mappings that takes 0 and 1 gives when it is run successfully

    create or replace the BODY of PACKAGE as pkg_refresh_mv
    procedure prc_mv (p_mv_name varchar2) is
    Start
    dbms_mview. Refresh (p_mv_name);
    end prc_mv;

    procedure refresh_all_mv (proc_response IN OUT number) is


    Start
    dbms_mview. Refresh ("' materialized view", "C");
    dbms_mview. Refresh ("' materialized view", "C");

    proc_response: = 1;
    exception
    while others then
    proc_response: = 0;
    end refresh_all_mv;
    end pkg_refresh_mv;

    When I run this code I get the following errors


    PLS-00201: identifier 'PKG_REFRESH_MV' must be declared.
    PLS-00304: impossible to compile 'PKG_REFRESH_MV' body without its specification

    what needs to be changed


    Thank you

    try this one:

    CREATE OR REPLACE PACKAGE pkg_refresh_mv
    AS
       PROCEDURE prc_mv (p_mv_name VARCHAR2);
       PROCEDURE refresh_all_mv (proc_response IN OUT NUMBER);
    END pkg_refresh_mv;
    /
    
    CREATE OR REPLACE PACKAGE BODY pkg_refresh_mv
    AS
       PROCEDURE prc_mv (p_mv_name VARCHAR2)
       IS
       BEGIN
          dbms_mview.refresh (p_mv_name);
       END prc_mv;
    
       PROCEDURE refresh_all_mv (proc_response IN OUT NUMBER)
       IS
       BEGIN
          dbms_mview.refresh ('materialized view', 'C');
          dbms_mview.refresh ('materialized view', 'C');
    
          proc_response := 1;
       EXCEPTION
          WHEN OTHERS
          THEN
             proc_response := 0;
       END refresh_all_mv;
    END pkg_refresh_mv;
    /
    
  • Taking some time to refresh materialized view

    I'd like to understand why refresh of the materialized view takes more time than to run the sql code of the materialized view.
    For example, I have a test_mv of materialized view that is created as below; When I simply run the select statement I get the result in 34 seconds, while if I try to update help
    BEGIN
    DBMS_MVIEW.refresh ('wi_mv7_monthly','C',ATOMIC_REFRESH=>false);
    end;
    /
    It takes about 74 dry

    Creation of MV
    Oracle version: Oracle Database 11 g Enterprise Edition Release 11.2.0.2.0 - 64 bit Production
    create materialized view TEST_MV
    (
      COLUMN_NAME_1,
      OBJECT_NAME,
      COLUMN_ID,
      "SUM(C.DATA_LENGTH)"
    ) organization heap
    
    partition by list (COLUMN_ID) (
     PARTITION "first_10_col" VALUES
      (
        1, 2, 3, 4, 5, 6, 7, 8, 9, 10
      ),
       PARTITION "After_10_col" VALUES
      (
        11,12, 13, 14, 15, 16, 17, 18, 19, 20
      ),
       PARTITION "NONE" VALUES (DEFAULT)
      )
    BUILD IMMEDIATE USING INDEX REFRESH COMPLETE ON DEMAND USING DEFAULT LOCAL ROLLBACK SEGMENT USING ENFORCED CONSTRAINTS
    as 
    select  /*+ parallel(o,8) parallel(c,2) */
    C.COLUMN_NAME as COLUMN_NAME_1,O.OBJECT_NAME,C.COLUMN_ID,SUM(C.DATA_LENGTH) from ALL_OBJECTS O
    join ALL_tab_columns c on c.table_name=o.object_name
    group by 
    C.COLUMN_NAME,O.OBJECT_NAME,C.COLUMN_ID
    Published by: user627047 on Sep 6, 2012 06:56

    SQL select statement some readings and refresh the views but mview reads and writes, so it consumes more time.

    If you want to speed up the cooling you can use the Refresh method fast mview

  • Refresh materialized views

    Hi all

    I created a procedure to refresh materialized views:

    create or replace procedure refresh_MV1 is
    Start
    dbms_mview. Refresh('Materialized_view_1','C')
    exception
    while others then
    INSERT into tablelog_mv (sysdate, 'Materialized_view_1', substr(sqlerrm,1,200));
    end;
    When I run run this procedurev (exec refresh_MV1), I am getting following error:

    due to: ORA-12018: following error occurred during the generation of code for "ISGCOS". «Materialized_view_1 "ORA-00942: table or view is no ORA-00942: table or view does not exist»

    But if I run anonymously without creating a procedure as below, it works very well and the matte view gets updated:

    Start
    dbms_mview. Refresh('Materialized_view_1','C')
    exception
    while others then
    INSERT into tablelog_mv (sysdate, 'Materialized_view_1', substr(sqlerrm,1,200));
    end;

    I couldn't understand what could be the problem?

    Thank you
    Chrystelle

    Privileges on tables and views must be granted directly to the user when they are referenced in the procedures. Grants to the roles will not work.

    Most likely your username has been granted privileges via a role

    grant all on Materialized_view_1 to myRole;
    grant myRole to myUser; -- this won't give you the privileges in a procedure
    

    You have the privileges directly

    grant all on Materialized_view_1 to myUser
    
  • See the column position of the cursor in the code view

    I realized this was requested in 2008...

    Is there a way to display the character column where the cursor was when in code view? And consider the size of the tabs (i.e., counts tabs as the number of characters)? I'm trying to make sure align various blocks of code in classic asp massively complex (and ugly) code...

    Thank you.

    The current version of Dreamweaver does not display the column number. However, the media don't.

    In parentheses is a free, open-source editor created by Adobe. It was announced last year that consoles will be integrated in the next major release of Dreamweaver, and that a public beta would be released sometime this year. You can either wait that the public beta version (should be pretty quickly), or you can download media immediately.

  • Cannot find the display in Code view Options button

    Hello

    To set the appearance of value encoding preferences in Dreamweaver code

    He said ""click the view Options button in the toolbar at the top of the Code view or the Code Inspector. " "

    However, I can't find it. If I click on Live, then I find it. But do not include the options Word Wrap, line numbers

    I'm wrong with something?

    The instructions are correct for the Code Inspector, but not for the document Code discovered.

    You can find options for Code view under view > Code view options.

    Some of these options are also available on the Code view toolbar, which can be activated from view > toolbars > coding.

  • Code view background color

    I just went back to CBWMS 2015 after the use of 2014 so far (on the installation of the extensions for the most part).

    Looking at it now, the background color of the code view is no longer white, but grey - I do not remember whether like this before.

    Or who did not alter one updated, I would be able to return to white somewhere in the preferences?

    Edit-> preferences-> Code-> theme coloring

  • The Materialized View - ORA-12052: is unable to fast refresh materialized view

    Hello

    I was hitting my head all day trying to create materialized views. I have made some progress, but have hit a brick wall, unfortunately!

    Basically, I have been invited to take a view and see if I can get the benefits of performance by transforming all or part of it in materialized views. Because the underlying tables of the config is updated quite frequently, I want to fast refresh materialized views on commit. However, when I try to create a materialized view containing an outer join in an aggregated materialized view table, I get ORA-12052: is unable to fast refresh materialized view.

    I went through the documentation and also Rob van Wijkvery useful series of blogs on the topic (especially http://rwijk.blogspot.co.uk/2009/09/fast-refreshable-materialized-view.html) but have not found anything that matches. Maybe I missed something somewhere along the line, or maybe I'm asking just something completely impossible?

    My db is 11.2.0.2.

    Here's the test scripts, I've worked with that:

    drop materialized view test1_test2_mv;
    Drop materialized view test2 journal;
    drop table test2;
    Drop materialized view test1_mv newspaper;
    drop materialized view test1_mv;
    Drop materialized view test1 journal;
    drop table test1;

    create table test1 (identification number,
    type varchar2 (10),
    number of Val,
    update_time date,
    constraint t1_pk primary key (id, type, val));

    Insert into test1
    Select 1, 'a', 1001, sysdate - 10/24 Union double all the
    Select 1, 'b', 1003, sysdate - 9/24 Union double all the
    Select 1, 'c', 1002, sysdate - 8/24 Union double all the
    Select 1, had ', 1004, sysdate - 7/24 Union double all the
    Select 1, 'e', 1005, sysdate - 6/24 Union double all the
    Select 1, 'c', 1006, sysdate - 5/24 Union double all the
    Select 2, 'a', 1002, sysdate - 4/24 Union double all the
    Select 2, 'b', 1005, sysdate - 3/24 Union double all the
    Select 3, 'a', 1001, sysdate - 2/24 Union double all the
    Select 3, 'c', 1006, sysdate - 1/24 Union double all the
    Select 3, 'e', 1008, sysdate - 2/24 Union double all the
    Select option 4, has ', 1004, sysdate - 3/24 Union double all the
    Select 5, 'b', 1002, sysdate - 4/24 Union double all the
    Select 5, 'g', 1001, sysdate - 5/24 Union double all the
    Select 6, 'h', 1004, sysdate - 6/24 Union double all the
    Select 7, 'b', 1007, sysdate - 7/24 Union double all the
    Select 7, had ', 1001, sysdate - 8/24 double;

    commit;

    Select * from test1;


    CREATE MATERIALIZED VIEW LOG ON test1
    WITH rowid, primary key (update_time)
    including the new values;


    Test1_mv CREATE MATERIALIZED VIEW
    IMMEDIATE CONSTRUCTION
    COOL OFF QUICKLY ON COMMIT
    Did YOU SELECT id,
    MAX (case when type = "there" end of val) THAT col_a,.
    MAX (case when type = 'b', then val end) AS col_b,.
    MAX (case when type = 'c' then end val) AS col_c,.
    MAX (case when type = ' then end of val) AS col_d,
    MAX (update_time) AS update_time
    OF test1
    WHERE TYPE in ('a',
    « b »,
    « c »,
    a ')
    GROUP BY id;

    CREATE MATERIALIZED VIEW LOG ON test1_mv
    WITH rowid
    including the new values;


    create table test2 (identification number,
    col2 number,
    COL3 varchar2 (10),
    number of COL4,
    constraint t2_pk primary key (id));

    Insert into test2
    Select 1, 1, 'bob', 1 double Union all
    Select 2, 1, "sue", 1 double Union all
    Select 3, 1, 'tom', 1 double Union all
    Select 4, 1, 'jay', 1 double Union all
    Select 5, 1, 'art', 1 double Union all
    Select 6, 1, 'kay', 1 double Union all
    Select 7, 1, 'max', 1 double Union all
    Select 8, 1, 'tim', 1 double Union all
    Select 9, 1, "liz", 1 from dual;

    commit;


    CREATE MATERIALIZED VIEW LOG ON test2
    WITH rowid, primary key
    including the new values;


    Test1_test2_mv CREATE MATERIALIZED VIEW
    IMMEDIATE CONSTRUCTION
    COOL OFF QUICKLY ON COMMIT
    LIKE SOME t2.rowid,.
    T1.ID,
    T1.col_a,
    T1.col_b,
    T1.col_c,
    T1.col_d,
    T1.update_time,
    T2.col2,
    T2. COL3
    OF test1_mv t1,.
    Test2 t2
    WHERE (+) t1.id = t2.id; -symbol of outer join is not correctly displayed on the forums without space, grr!

    ORA-12052: is unable to fast refresh materialized view TEST1_TEST2_MV

    Y at - it any way I can get the materialized view fast refresh on commit or I asking the impossible?

    Add t1.rowid:

    SQL > CREATE MATERIALIZED VIEW test1_test2_mv

    2 BUILD IMMEDIATE

    3 QUICK REFRESH YOU COMMIT

    4 AS t2.rowid SELECT rid2,

    5 t1.rowid rid1,

    6 t1.id

    T1.col_a 7,.

    T1.col_b 8,.

    T1.col_c 9,.

    T1.col_d 10,

    T1.update_time 11,

    T2.col2 12,

    13 t2.col3

    14 OF test1_mv t1,

    15 test2 T2

    16 WHERE t1.id = t2.id

    17.

    Materialized view created.

    SQL > select * from test1_test2_mv

    2.

    RID2 RID1 ID COL_A, COL_B, COL_C COL_D UPDATE_TIME COL2 COL3

    ------------------ ------------------ ---------- ---------- ---------- ---------- ---------- ------------------- ---------- ----------

    AAAYB6AANAAAANDAAA AAAYB/AANAAAAN/AAA 1 1001 1003 1006 1004 25 / 06 / 2014 12:54:16 1 bob

    AAAYB6AANAAAANDAAB AAAYB/AANAAAAN/AAB 2 1002 1005 25 / 06 / 2014 1 sue 14:54:16

    AAAYB6AANAAAANDAAC AAAYB/AANAAAAN/AAC 3 1001 1006 25 / 06 / 2014 16:54:16 1 tom

    AAAYB/AANAAAAN/AAD AAAYB6AANAAAANDAAD 4 1004 25/06/2014 14:54:16 1 jay

    AAAYB6AANAAAANDAAE AAAYB / AANAAAAN / AAE 5 1002 2014/06/25 13:54:16 1 art

    AAAYB6AANAAAANDAAF AAAYB/AANAAAAN/AAG 7 1007 1009 25 / 06 / 2014 10:54:16 max 1

    AAAYB/AANAAAAN/AAH                                                                                                        1 tim

    AAAYB/AANAAAAN/AAF                                                                                                        1 kay

    AAAYB/AANAAAAN/AAI                                                                                                        1 liz

    9 selected lines.

    SQL > update of test2

    2 set col3 = "fly."

    3 where id = 7

    6 m

    1 line update.

    SQL > validation

    2.

    Validation complete.

    SQL > select * from test1_test2_mv

    2.

    RID2 RID1 ID COL_A, COL_B, COL_C COL_D UPDATE_TIME COL2 COL3

    ------------------ ------------------ ---------- ---------- ---------- ---------- ---------- ------------------- ---------- ----------

    AAAYB6AANAAAANDAAA AAAYB/AANAAAAN/AAA 1 1001 1003 1006 1004 25 / 06 / 2014 12:54:16 1 bob

    AAAYB6AANAAAANDAAB AAAYB/AANAAAAN/AAB 2 1002 1005 25 / 06 / 2014 1 sue 14:54:16

    AAAYB6AANAAAANDAAC AAAYB/AANAAAAN/AAC 3 1001 1006 25 / 06 / 2014 16:54:16 1 tom

    AAAYB/AANAAAAN/AAD AAAYB6AANAAAANDAAD 4 1004 25/06/2014 14:54:16 1 jay

    AAAYB6AANAAAANDAAE AAAYB / AANAAAAN / AAE 5 1002 2014/06/25 13:54:16 1 art

    AAAYB/AANAAAAN/AAH                                                                                                        1 tim

    AAAYB/AANAAAAN/AAF                                                                                                        1 kay

    AAAYB/AANAAAAN/AAI                                                                                                        1 liz

    AAAYB6AANAAAANDAAF AAAYB/AANAAAAN/AAG 7 1007 1009 25 / 06 / 2014 10:54:16 1 rob

    9 selected lines.

  • How can I change the appearance of the characters hidden in the code view?

    I'm talking about DW CC 2014.

    Use unicode characters

    U + 00 has 0 (nonbreaking space)
    and
    U + 202F (narrow nonbreaking space)

    Well, I don't want to use entities for several good reasons. These reasons should not be the subject in this thread.

    When I turn on "Show hidden characters" U + 00 to 0 is shown as a "°" in light grey.

    U + 202F appears independent of "see hidden characters." It is presented as a small black square with a cross inside.

    The font that I use in the code view is 'Source Code Pro', but the choice has no effect on what I'm talking about.

    If you want to reproduce this, you can just choose the wikipedia unicode characters:
    https://en.Wikipedia.org/wiki/Whitespace_character

    In the big picture, fourth column.

    Two questions:

    1

    How can I do DW to hide the U + 202F, when I disable "Show hidden characters"?

    What are the config files in DW 'hack' that, please?

    2

    How can I change the layout of U + 00 a 0 and U + 202F?

    What are the config files in DW 'hack' that, please?

    Example: I would like to choose a different location for U + 202F because the "small square with the cross inside' is intrusive. It makes reading difficult.

    Thanks a lot for your help.

    If a developer or something from adobe reads this thread. Please take my question as a desire to feature for future versions of DW.

    This is a quality characteristic, when different types of spaces are supported.

    Some of these spaces are very important for a typography exzellent.

    I'm sure that someone knows how special characters are handled in Dreamweaver, but if it is controlled by an editable file or hidden deep in the bowels of the software, only an Adobe engineer is likely to know.

    Public information on the integration of media in Dreamweaver are in this blog post from Dreamweaver: next generation of Dreamweaver: Adobe Dreamweaver Team Blog.

    I feel that the idea is to combine the best features of media with Dreamweaver. As the blog post suggests, there will be a public beta. When that happens, people will have the opportunity to say what they do and don't like. If enough people make the compelling case for X or Y, there is a chance it could be implemented (or maybe not).

  • Code view in Dreamweaver displays large empty spaces between the lines

    See attached image. Code view shows large differences between the lines. It is not an extra space. I can't remove it. As you can see in the picture if I select the code space is attached to the code. I'm sure that it is a very simple display option change, but I've looked everywhere. I've just upgraded to the latest version of the thought of DW which may help, but he always does. How can I get rid of the extra space?

    Screen Shot 2015-12-11 at 9.29.42 AM.png

    With highlighting the way in which it is, it seems to me that you may have a corrupt police.

    Go in Edition > Preferences > fonts > mode Code and switch to Source Code Pro (if this isn't the case) or something like courier so it is.

    If it is a corrupt police, the origin of the problem, which should dissipate it.

  • When I hit a link to a page in my directory in code view and I click on the link using live view, it does not to this page.  But if I saw in a browser, it works very well.

    When I hit a link to a page in my directory in code view and I click on the link in live mode view, it does nothing.  When I then go to preview in a browser, it works fine.  Can anyone help?

    To follow links in Live View mode, hold down the CTRL on Windows or the command key on a Mac key, and then click the link. Clicking on without using the Ctrl/Cmd key simply selects the link in Live View mode.

  • additional horizontal space in code view no matter how I resize the window

    on dreamweaver OSX10.10.2 CC 2014.11 I can still scroll horizontally on two characters in code view, no matter how I resize the window

    Hello Greg,.

    The screenshots, has explained the issue!

    It is present in previous versions of DW as well & only happens for PHP files. Nevertheless, I logged a bug for this.

    As a solution for the moment, you can simply activate and deactivate the option of film word in horizontal mode Code to get rid of the scroll bar.

    Thank you

    Delphine

  • CS6 Dreamweaver Code view Scrollbar flicker

    In Dreamweaver CS6 on Windows 7, I'm running a very annoying problem with the code view. It seems that the line height is not quite right, so when I scroll to the bottom of the page, an additional line appears under the code, without line number. When this extra line is visible, click anywhere in the window causes the scroll bar to "reset" with lining of last line up to the lower part of the window. This becomes a problem when typing on the last line, because it causes the scroll bar reset back down to the extra line visible again and then just constantly resets when you type. There is a flicker very annoying and amazing in fact hard to make selections, type or perform tasks at the bottom of the code editor (on the bottom lines of 50 or so). I still find myself insertion on 50-100 lines of white space at the end of the code to avoid this problem.

    Restart Dreamweaver does not solve it. In addition, on some files, this extra space appears, but it does not affect the scroll bar.

    All I have this problem or knows what to do to fix it (beyond adding more white space)?

    Here are the screenshots of the problem.

    With extra space:

    extraspace.png

    Without extra space:

    noextraspace.png

    Well, I think I've fixed this. I found this article on clearing the cache of Dreamweaver to be useful.

    Deleting a corrupted cache file

  • materilized manual refresh of view

    We have a materialized view.it is created by using the query below

    CREATE THE EMPMASTER MATERIALIZED VIEW
    QUICKLY REFRESH ON DEMAND
    AS
    SELECT *.
    ABC. EMPMASTER@EMPLINK.

    How to refresh this view manully.

    Hello

    DBMS_MVIEW exec. REFRESH ('EMPMASTER');

    Kind regards

  • Pivot can be used in fast refresh materialized view?

    Hi, I have a question about materialized view nested mode fast refresh on Oracle 11 g (It support function of pivot, but oracle 10 g doesn't support).

    When I created, he throws "ORA-12015: cannot create a view fast refresh materialized by a complex query.
    Then I used dbms_mview.explain_mview to see reason, and it tell me the following
    REFRESH_FAST_AFTER_INSERT ' view inline or subquery in LIST not supported for this type of MV.

    Can someone help me, any suggestions will be appreciated
    create table empX as select * from scott.emp;
    alter table empX add constraint PK_empX_empno primary key (empno);
    
    --drop  MATERIALIZED VIEW LOG ON empX;
    CREATE MATERIALIZED VIEW LOG ON empX with rowid, sequence(empno);
    
    --drop MATERIALIZED VIEW mv_empX;
    CREATE MATERIALIZED VIEW mv_empX
    REFRESH FAST START WITH SYSDATE
    NEXT  SYSDATE + 1/1440
    AS   
      select * from
      (
       select rowid emp_rowid, deptno, job, sal from empX
      )
      PIVOT( max(sal) for job IN ('ANALYST' job1, 'CLERK' job2, 'MANAGER' job3));
     
    --select * from mv_capabilities_table
    declare
      lv_sqltext varchar2(4000);
    begin
      execute immediate 'truncate table mv_capabilities_table';
      lv_sqltext := 'select * from
      (
       select deptno, job, sal from empX
      )
      PIVOT( max(sal) for job IN (''ANALYST'' job1, ''CLERK'' job2, ''MANAGER'' job3))
      ';  
      dbms_mview.explain_mview(lv_sqltext,'nested=>TRUE');
      commit;
    end;
    /

    Let me help you...
    I have done following and it run/view updated because I just replaced quickly with a complete word, because there are limitations for quickly updatable views:

    SQL> show user;
    USER is "SCOTT"
    SQL> create table empX as select * from scott.emp;
    
    Table created.
    
    SQL> alter table empX add constraint PK_empX_empno primary key (empno);
    
    Table altered.
    
    SQL>
    SQL> --drop  MATERIALIZED VIEW LOG ON empX;
    SQL> CREATE MATERIALIZED VIEW LOG ON empX with rowid, sequence(empno);
    
    Materialized view log created.
    
    SQL>
    SQL> --drop MATERIALIZED VIEW mv_empX;
    SQL> CREATE MATERIALIZED VIEW mv_empX
      2  REFRESH COMPLETE WITH rowid
      3  START WITH sysdate
      4  NEXT  SYSDATE + 1/1440
      5  AS
      6    select * from
      7    (
      8     select rowid emp_rowid, deptno, job, sal from empX
      9    )
     10    PIVOT( max(sal) for job IN ('ANALYST' job1, 'CLERK' job2, 'MANAGER' job3));
    
    Materialized view created.
    
    SQL> select * from mv_empx;
    
    EMP_ROWID              DEPTNO       JOB1       JOB2       JOB3
    ------------------ ---------- ---------- ---------- ----------
    AAAShcAAEAAAATTAAN         10                  1300
    AAAShcAAEAAAATTAAE         30
    AAAShcAAEAAAATTAAJ         30
    AAAShcAAEAAAATTAAC         30
    AAAShcAAEAAAATTAAA         20                   800
    AAAShcAAEAAAATTAAK         20                  1100
    AAAShcAAEAAAATTAAM         20       3000
    AAAShcAAEAAAATTAAD         20                             2975
    AAAShcAAEAAAATTAAB         30
    AAAShcAAEAAAATTAAI         10
    AAAShcAAEAAAATTAAL         30                   950
    
    EMP_ROWID              DEPTNO       JOB1       JOB2       JOB3
    ------------------ ---------- ---------- ---------- ----------
    AAAShcAAEAAAATTAAF         30                             2850
    AAAShcAAEAAAATTAAG         10                             2450
    AAAShcAAEAAAATTAAH         20       3000
    
    14 rows selected.
    
    SQL> begin
      2  dbms_mview.refresh('SCOTT.mv_empx');
      3  end;
      4  /
    
    PL/SQL procedure successfully completed.
    
    SQL> select * from mv_empx;
    
    EMP_ROWID              DEPTNO       JOB1       JOB2       JOB3
    ------------------ ---------- ---------- ---------- ----------
    AAAShcAAEAAAATTAAN         10                  1300
    AAAShcAAEAAAATTAAE         30
    AAAShcAAEAAAATTAAJ         30
    AAAShcAAEAAAATTAAC         30
    AAAShcAAEAAAATTAAA         20                   800
    AAAShcAAEAAAATTAAK         20                  1100
    AAAShcAAEAAAATTAAM         20       3000
    AAAShcAAEAAAATTAAD         20                             2975
    AAAShcAAEAAAATTAAB         30
    AAAShcAAEAAAATTAAI         10
    AAAShcAAEAAAATTAAL         30                   950
    
    EMP_ROWID              DEPTNO       JOB1       JOB2       JOB3
    ------------------ ---------- ---------- ---------- ----------
    AAAShcAAEAAAATTAAF         30                             2850
    AAAShcAAEAAAATTAAG         10                             2450
    AAAShcAAEAAAATTAAH         20       3000
    
    14 rows selected.
    
    SQL>
    

    So, the answer is Yes, we can use Pivot with Materialized view but:
    1 MV must be full refresh.
    2 oracle version should be 11 g; of course the pivot is available in Oracle 11 g.

    If this answers your question, please close the message, otherwise continue.

    These links may also be of interest:
    http://docs.Oracle.com/CD/B28359_01/server.111/b28313/basicmv.htm#i1007028
    http://docs.Oracle.com/CD/B28359_01/server.111/b28313/basicmv.htm#i1007007

    http://rwijk.blogspot.in/2009/06/fast-refreshable-MATERIALIZED-view.html

    And:

    Please see if (Note: 179466.1 - view to fast refresh materialized diagnose ORA-12015 / complex queries) help.

    Concerning
    Girish Sharma

Maybe you are looking for

  • Restore CD failed

    I installed unlicense WXP Pro replace my OS to Windows XP Home edition home page. I want to install my OS WXP Home back. I try to launch my product recovery CD but failed.Please help me what to do.Thank you

  • Update BIOS of 1, 70 - WIN on Satellite Z830-10 t - computer not supported

    Hi all I am installing the update of the BIOS 1, 70-WIN of 09/12/12, delivered in a folder called "bios-20120907140253', unsuccessfully zip. Whenever I run the .exe file, I get "this computer is not supported" returned in BIOS Toshiba package Ver.4.2

  • shortcut keys stop working

    I have a .exe, I create a shortcut to it, I attribute a short key (ctl + alt +?) for the shortcut, it works but for the day only?After the next restart the shortcut key is always displayed in the properties of the shortcut, but it does not work? If I

  • -settings of the scanner Photosmart 3310

    Where the HP Photosmart 3310 stores the settings of the scanner? I am running Windows 7 and may need to reinstall my OS, but I spent a lot of time tweaking the settings that I use for scanning and hate not to be able to save them somehow so I can rei

  • Cartridge Deskjet F2180 problem

    I have problems with the black cartridge, it will not print an alignment page which means it does not print correctly. Does anyone have any suggestions as to what to do to fix?