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