Oracle Solution for Error ora-30452

Solution for Oracle Error ORA-30452

ORA-30452: cannot compute AVG(X), VARIANCE(X) or STDDEV(X), without COUNT(X) or SUM(X)

What triggered the Error:

Incremental refresh of summaries requires a COUNT(X) column in order to incrementally refresh AVG(X). It requires both SUM(X) and COUNT(X) columns in order to in refresh STDDEV(X) or VARIANCE(X)

What should we do to fix it:

Make sure that the required columns are part of the summary definition if incremental refresh capability is desired.