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;
1. add 'Delete' Del column to Report Query 2. Set the Following Properties for the DEL Column Type: Link Heading: Delete Targ...
No comments:
Post a Comment