shelley2342
MIS
is it possible to assign a materialized view to use a specified rollback segment?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
commit;
Set transaction use rollback segment <rbs-name>;
CREATE MATERIALIZED VIEW mv_demo
REFRESH COMPLETE USING ROLLBACK SEGMENT yourRBS
AS
SELECT *
FROM yourTable;