Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

materialized view not getting refreshed

ora_learner36Oct 7 2018 — edited Oct 24 2018

dear all,

A materialized view created  with 'REFRESH ON DEMAND' is not getting refreshed in oracle database.

CREATE MATERIALIZED VIEW TEST_MV

TABLESPACE APPS_TS_TX_DATA

PCTUSED    0

PCTFREE    10

INITRANS   2

MAXTRANS   255

STORAGE    (

            INITIAL          128K

            NEXT             128K

            MINEXTENTS       1

            MAXEXTENTS       UNLIMITED

            PCTINCREASE      0

            BUFFER_POOL      DEFAULT

           )

NOCACHE

LOGGING

NOCOMPRESS

NOPARALLEL

BUILD IMMEDIATE

REFRESH FORCE ON DEMAND

WITH PRIMARY KEY

AS

...................

....................

kindly, help to sort out this issue.

your help will be appreciated thanks in advance.

thanks & regards.

os:rhel 6

db:11.2.0.3

ebs:11.2.0.3

Comments
Post Details
Added on Oct 7 2018
4 comments
5,412 views