top of page

Program error

Открытая·3 пользователя

CE-00053: Monitoring (Oracle count invalid object)

[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>;
13 просмотров

О группе

Добро пожаловать в группу! Общайтесь с другими участниками, получайте обновления и делитесь фото и видео.

Участники

bottom of page