Does anyone have any comments about using nice to decrease the priority of running sqlplus?
I need to run a PL/SQL program which is quite processor intensive – I can run it at night when I won’t affect users but I’d like to run it during the day. I’ve tried using nice but my (very cursory) testing indicates that using nice -19 (which should make my sqlplus session run at the lowest possible priority) still affects the application significantly.
2 questions:
• Would we expect
to affect a PL/SQL program subsequently called within the sqlplus session? I assume so because any process called by another should inherit its parent’s priority.
• Has anyone else tried this – what’s your experience?
I’m interested to hear what people have to say about this. For info this is Oracle 9.2 on Solaris 9.
Chris
I need to run a PL/SQL program which is quite processor intensive – I can run it at night when I won’t affect users but I’d like to run it during the day. I’ve tried using nice but my (very cursory) testing indicates that using nice -19 (which should make my sqlplus session run at the lowest possible priority) still affects the application significantly.
2 questions:
• Would we expect
Code:
nice -19 sqlplus ‘/ as sysdba’
• Has anyone else tried this – what’s your experience?
I’m interested to hear what people have to say about this. For info this is Oracle 9.2 on Solaris 9.
Chris