top of page

Program error

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

CE-00035: Monitoring (Oracle open cursor)

[RU]


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

Текст сообщения: Monitoring (Oracle open cursor)

Информация

  • Получение данных о открытых курсорах в инстансе

Запрос


select sum(a.value)
  from v$sesstat a,    
       v$statname b
 where a.statistic# = b.statistic#
   and b.name = 'opened cursors current'  

Решение

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


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


[EN]


Error Source: Oracle DBMS Operation Monitoring Kernel

Message text: Monitoring (Oracle open cursor)

Information

  • Getting data about open cursors in an instance

Query


select sum(a.value)
  from v$sesstat a,    
       v$statname b
 where a.statistic# = b.statistic#
   and b.name = 'opened cursors current'  

Solution

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


grant select any dictionary to <UserName>;
or 
grant select on v$sesstat to <UserName>;
grant select on v$statname to <UserName>;


23 просмотра

О группе

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

Участники

bottom of page