If you have installed Adaptive Server with the Job Scheduler feature enabled:
Stop Job Scheduler by issuing the following command from an isql session:
use sybmgmtdb go sp_js_wakeup "stop_js", 1 go
Using isql, run the installjsdb script that is included with this release.
isql -Usa -P<sa password> -S<server name> -n -i%SYBASE%\%SYBASE_ASE\scripts\installjsdb -o<outputfile>
Save the output of this step to an operating system file.
The installjsdb script looks for the sybmgmtdb database. The script updates Job Scheduler tables and stored procedures.
Start Job Scheduler by issuing the following commands from an isql session:
use sybmgmtdb go sp_js_wakeup "start_js", 1 go