top of page

Program error

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

CE-00047: Monitoring (Oracle space recommendation)

[RU]


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

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

Информация

  • Получение информации об объеме свободного места в табличных пространствах которое освободится при выполнении рекомендаций по сжатию объектов


Запрос

select round(sum(reclaimable_space)/1024/1024,2) "FreeMB"
  from table(dbms_space.asa_recommendations())
order by reclaimable_space desc 

Решение

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


grant execute on dbms_space to <UserName>


[EN]


Error Source: Oracle DBMS Operation Monitoring Kernel

Message text: Monitoring (Oracle space recommendation)

Information

  • Obtaining information about the amount of free space in tablespaces that will be freed up when recommendations for compressing objects are followed


Query

select round(sum(reclaimable_space)/1024/1024,2) "FreeMB"
  from table(dbms_space.asa_recommendations())
order by reclaimable_space desc 


Solution

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

grant execute on dbms_space to <UserName>
9 просмотров

Участники

bottom of page