Is the value of total_sga_mb and sga_size_1_mb as returned by the following query always equal?
select
(select round(sum(value)/1024/1024) from v$sga) total_sga_mb,
(select sga_size from v$sga_target_advice where sga_size_factor = 1) sga_size_1_mb
from
dual;
See also
The information in v$memory_target_advice is similar to that provided by v$sga_target_advice.