Iam trying to refresh the materialized view by using:
DBMS_MVIEW.REFRESH(\'v_materialized_foo_tbl\')
But it\'s throwing invalid sql stateme
When we have to use inbuilt procedures or packages we have to use "EXECUTE" command then it will work.
EX:
EXECUTE exec DBMS_MVIEW.REFRESH('v_materialized_foo_tbl');