[RU]
Источник ошибки: Ядро мониторинга работы СУБД Oracle
Текст сообщения: Monitoring (Oracle Dictionary Cache Hit Ratio)
Информация
Получение данных о проценте попадания запросов в кеш словаря. Чем выше значение, тем лучше
Запрос
SELECT round((1 - (Sum(getmisses)/(Sum(gets) + Sum(getmisses)))) * 100,2) "rel"
FROM v$rowcache
Решение
Предоставить пользователю права на чтение данных системного каталога, например
grant select any dictionary to <UserName>;
или
grant select on v$rowcache to <UserName>;
[EN]
Error Source: Oracle DBMS Operation Monitoring Kernel
Message text: Monitoring (Oracle Dictionary Cache Hit Ratio)
Information
Obtaining data on the percentage of requests hitting data blocks in the buffer cache. The higher the value, the better
Query
SELECT round((1 - (Sum(getmisses)/(Sum(gets) + Sum(getmisses)))) * 100,2) "rel"
FROM v$rowcache
Solution
Grant the user rights to read system directory data, for example
grant select any dictionary to <UserName>;
or
grant select on v$rowcache to <UserName>;