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