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