top of page

Program error

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

CE-00059: Monitoring (Oracle Dictionary Cache Hit Ratio)

[RU]


Источник ошибки: Ядро мониторинга работы СУБД Oracle

Текст сообщения: Monitoring (Oracle Dictionary Cache Hit Ratio)

Информация

  • Получение данных о проценте попадания запросов в кеш словаря. Чем выше значение, тем лучше


Запрос

SELECT round((1 - (Sum(getmisses)/(Sum(gets) + Sum(getmisses)))) * 100,2) "rel" 
  FROM v$rowcache

Решение

Предоставить пользователю права на чтение данных системного каталога, например

grant select any dictionary to <UserName>; 
или       
grant select on v$rowcache to <UserName>;



[EN]


Error Source: Oracle DBMS Operation Monitoring Kernel

Message text: Monitoring (Oracle Dictionary Cache Hit Ratio)

Information

  • Obtaining data on the percentage of requests hitting data blocks in the buffer cache. The higher the value, the better


Query

SELECT round((1 - (Sum(getmisses)/(Sum(gets) + Sum(getmisses)))) * 100,2) "rel" 
  FROM v$rowcache


Solution

Grant the user rights to read system directory data, for example

grant select any dictionary to <UserName>; 
or       
grant select on v$rowcache to <UserName>;
9 просмотров

О группе

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

Участники

bottom of page