using Oracle 9.
I'm trying to create a materialized view on a view but keep getting the following error.
The view does exist. I'm under the assumption that creating a materialized view on a view is done the same way as on a table.
I'm trying to create a materialized view on a view but keep getting the following error.
The view does exist. I'm under the assumption that creating a materialized view on a view is done the same way as on a table.
Code:
ora-00942: table or view does not exist.
Code:
CREATE MATERIALIZED VIEW LOG ON VW_VIEW
TABLESPACE CORESDATA
PCTUSED 30
PCTFREE 60
INITRANS 2
MAXTRANS 255
STORAGE (
INITIAL 64K
MINEXTENTS 1
MAXEXTENTS UNLIMITED
PCTINCREASE 0
BUFFER_POOL DEFAULT
)
NOCACHE
LOGGING
NOPARALLEL
WITH ROWID
EXCLUDING NEW VALUES;