Modify the Oracle Database Cluster process to use the FX scheduler.
priocntl -s -c FX -m 60 -p 60 -i pid `pgrep -f ora_lgwr_TST`
Update to include the LMS process as well
for i in `pgrep -f ora_lms && pgrep -f ora_lgwr_TST`; do priocntl -s -c FX -m 60 -p 60 -i pid $i; done