Friday, September 13, 2019

Materialized View in Oracle


Create Materialized View:

CREATE MATERIALIZED VIEW EMP_MVIEW
AS
SELECT * FROM EMP;

Refresh Materialized view:

EXEC DBMS_MVIEW.REFRESH ('EMP_MVIEW', method => 'C');

Drop Materialized View:

DROP MATERIALIZED VIEW EMP_MVIEW;

No comments:

Post a Comment

Delete Row Button to all records of Interactive Report in Oracle Apex

 1. add 'Delete' Del column to Report Query 2. Set the Following Properties for the DEL Column Type: Link Heading: Delete Targ...