Use this Oracle Database Script to find Stale Materialized Views in Oracle. What are Stale Materialized Views ? Stale means that using the materialized view would yield a different result than using the base table. You can fix this by:
column owner heading "Owner" format a10;
column mview_name heading "View Name" format a30;
column last_refresh_date heading "Last Refresh|Date";
column refresh_method heading "Refresh|Method";
select owner,mview_name,last_refresh_date, refresh_method
from all_mview_analysis
where known_stale = 'Y';
clear columns;