do the following query


select a.name b.value
from v$statname a, v$mystat b
where a.statistic# = b.statistic#
and a.name like '%ga%';


Sam