
The error would be ‘ORA-12014 ‘
To overcome this error ‘WITH ROWID’ option should be used along with the refresh option.
Then you can create the materialized view.
CREATE MATERIALIZED VIEW VIEW_NAME
REFRESH COMPLETE ON DEMAND
WITH ROWIDASSELECT * FROM TABLE_NAME
No comments:
Post a Comment