Thanks dear...
I got confused about this command also.
> create materialized view oe.emp
REFRESH FAST START WITH SYSDATE NEXT SYSDATE + 1/24
as select * from oe.emp@ora1.world;
Is this a correct syntax? Does it refresh my view every hour
for eternity? or just the next 1 hr one time only?
...or do i need to run this command>
DBMS_DEFER_SYS.SCHEDULE_PUSH (
destination => 'ora1.world',
interval => 'SYSDATE + (1/24)', -- you set the time interval here
next_date => SYSDATE,
parallelism => 4,
execution_seconds => 0,
delay_seconds => 55);
END;
/
Thanks a lot
Last edited by yxez; 12-19-2006 at 10:14 PM.
Behind The Success And Failure Of A Man Is A Woman
Bookmarks