[RU]
Источник ошибки: Ядро мониторинга работы СУБД Oracle
Текст сообщения: Monitoring (Oracle SGA max size)
Информация
Получение данных о максимально возможном размере пространства памяти SGA распределенного при страте инстанса
Запрос
SELECT round(SUM(value)/1024/1024) "startsga" FROM V$SGA
Решение
Предоставить пользователю права на чтение данных системного каталога, например
grant select any dictionary to <UserName>;
или
grant select on v$sga to <UserName>;
[EN]
Error Source: Oracle DBMS Operation Monitoring Kernel
Message text: Monitoring (Oracle open cursor)
Information
Obtaining data on the maximum possible size of the SGA memory space allocated at the instance stratum
Query
SELECT round(SUM(value)/1024/1024) "startsga" FROM V$SGA
Solution
Grant the user rights to read system directory data, for example
grant select any dictionary to <UserName>;
or
grant select on v$sga to <UserName>;