In Oracle12+ one can query a handy view called dba_mvref_stats
to find all refreshes of a particular mview. I've bumped into the same task on Oracle 11g and I'm kinda stuck at the moment.
There's a similar question (History refresh of materialized view) but IMHO the answer doesn't responds the author's question as ALL_MVIEW_REFRESH_TIMES
reflects refresh time of underlying table and keeps only latest refresh type.
What I'm looking for is an answer to question "Was there any COMPLETE refresh of a particular mview?". I create an mview on prebuilt table (which is empty) and want to run a COMPLETE refresh if it hasn't been run before or continue with a FAST refresh.
Maybe other options exist for me, so feel free to advise any.
EDIT: Question Materialized Views - Identifying the last refresh is about the last refresh event while I want to know the whole history of refreshes