Installation Guide Upgrading to Oracle Life Sciences Data Hub Release 2.5 Start Queues Start the Message Queue Start the Message Queue Log in to SQL*Plus as apps. Make sure the queue is stopped. View the log: select MESSAGE from cdr_msg_queues_log order by log_message_id; If the most recent statement is the following, the queue is stopped.End Procedure cdr_exe_msg_submission.process_queues() If not, stop the queue:begin cdr_exe_msg_queues_admin.stop_processing_queues; end; / Wait until you see the "End Procedure" statement in the log. After the queue is stopped, start and enable the queue: begin cdr_exe_msg_queues_admin.start_processing_queues; cdr_exe_msg_queues_admin.enable_job_processing_queue; end; / Check that the queue is started and enabled: select MESSAGE from cdr_msg_queues_log order by log_message_id; The output should contain the following statements (there may be Submission statements after these):Begin Procedure cdr_exe_msg_submission.process_queues() dequeued from control Q: _MSGCONTROL_ENABLE Parent topic: Start Queues