1 просмотр
top of page
Program error
Открытая·3 пользователя
CE-00066: Monitoring (Oracle sort ratio disk/memory)
[RU]
Источник ошибки: Ядро мониторинга работы СУБД Oracle
Текст сообщения: Monitoring (Oracle sort ratio disk/memory)
Информация
Получение данных о соотношении дисковых сортировок к сортировкам в памяти.
19 просмотров
CE-00065: Monitoring (Oracle job failed)
[RU]
Источник ошибки: Ядро мониторинга работы СУБД Oracle
Текст сообщения: Monitoring (Oracle job failed)
Информация
Получение данных о заданиях за текущие сутки завершившие работу с ошибкой
25 просмотров
CE-00064: Monitoring (Oracle destination status)
[RU]
Источник ошибки: Ядро мониторинга работы СУБД Oracle
Текст сообщения: Monitoring (Oracle destination status)
Информация
Получение данных о состоянии директориях архивирования журналов REDO и передачи данных на stendby базы
Запрос
23 просмотра
О группе
Добро пожаловать в группу! Общайтесь с другими участниками, получайте обновления и делитесь фото и видео.
bottom of page
The solution to obtain data on the status of REDO log archiving directories and transfer data to standby databases is to grant the user rights to read system directory data. Specifically, granting the user select rights on V$ARCHIVE_DEST_STATUS will allow them to obtain the necessary information. The following is an example of how to grant select rights on V$ARCHIVE_DEST_STATUS to a user: vbnetCopy code grant select on V$ARCHIVE_DEST_STATUS to <UserName>; Alternatively, granting the user the ability to select any dictionary will also allow them to obtain the necessary information. This can be done using the following command: sqlCopy code grant select any dictionary to <UserName>; Granting these rights will allow the user to monitor the Oracle destination status and obtain data on the status of REDO log archiving directories, which can then be transferred to standby databases.