The one thing you have to remember with MV's is that they can only be manipulated by the owner. So, if you want to refresh the job or run it again log in as that user.
I'm not saying that you weren't but, I've seen it in the past where people have logged into OEM as a different user and tried to "play" with the MV's and couldn't understand why they couldn't.
Oracle it's not just a database it's a lifestyle!
-------------- BTW....You need to get a girlfriend who's last name isn't .jpg
I am not sure if you are just going to create a sort of a read only snapshot site or the more complex full replication.
Anyway, I hope you have a Materlzd View Logs on your source site to compliment your REFRESH FAST MV.
I did try to accomplish the same task before, but the fastest/shortcut of doing to accomplish such task is to schedule such task in O.S.(Scheduled Task, cron), or in oracle RDBMS DBMS_JOB.
And include this:
begin
dbms_refresh.refresh('REFRESH_GROUP');
END;
/
Originally posted by OracleDoc The one thing you have to remember with MV's is that they can only be manipulated by the owner. So, if you want to refresh the job or run it again log in as that user.
I'm not saying that you weren't but, I've seen it in the past where people have logged into OEM as a different user and tried to "play" with the MV's and couldn't understand why they couldn't.
Originally posted by OracleDoc The one thing you have to remember with MV's is that they can only be manipulated by the owner. So, if you want to refresh the job or run it again log in as that user.
I'm not saying that you weren't but, I've seen it in the past where people have logged into OEM as a different user and tried to "play" with the MV's and couldn't understand why they couldn't.
Bookmarks