[RU]
Источник ошибки: Ядро мониторинга работы СУБД Oracle
Текст сообщения: Monitoring (Oracle count process)
Информация
Получение данных о количестве процессов в базе данных
Запрос
select count (*) "countproc" from v$process
Решение
Предоставить пользователю права на чтение данных системного каталога, например
grant select any dictionary to <UserName>;
или
grant select on v$process to <UserName>;
[EN]
Error Source: Oracle DBMS Operation Monitoring Kernel
Message text: Monitoring (Oracle count process)
Information
Getting data about the number of processes in the database
Query
select count (*) "countproc" from v$process
Solution
Grant the user rights to read system directory data, for example
grant select any dictionary to <UserName>;
or
grant select on v$process to <UserName>;