[RU]
Источник ошибки: Ядро мониторинга работы СУБД Oracle
Текст сообщения: Monitoring (Oracle counts corruption blocks)
Информация
Получение данных о количестве поврежденных блоков в файлах данных базы данных Oracle
Запрос
select count(*) counts
from V$DATABASE_BLOCK_CORRUPTION
Решение
Предоставить пользователю права на чтение данных системного каталога, например
grant select any dictionary to <UserName>;
или
grant select on V$DATABASE_BLOCK_CORRUPTION to <UserName>;
[EN]
Error Source: Oracle DBMS Operation Monitoring Kernel
Message text: Monitoring (Oracle counts corruption blocks)
Information
Obtaining Number of Bad Blocks in Oracle Database Data Files
Query
select count(*) counts
from V$DATABASE_BLOCK_CORRUPTION
Solution
Grant the user rights to read system directory data, for example
grant select any dictionary to <UserName>;
or
grant select on V$DATABASE_BLOCK_CORRUPTION to <UserName>;