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