If you are downgrading to Adaptive Server versions 12.5.3 ESD#2 or earlier, you must run installjsdb script from the lower version anytime you downgrade Job Scheduler.
Downgrading Job Scheduler
Disable Job Scheduler before you downgrade Adaptive Server:
sp_configure "enable job scheduler", 0
Downgrade Adaptive Server. See the installation guide for details.
Run the installjsdb script:
isql –Usa –Psa_password –Sservername –i $SYBASE_ASE/scripts/installjsdb
The directory with the location of the isql executable ($SYBASE_OCS/bin)
must be in your path.
Enable Job Scheduler:
sp_configure "enable job scheduler", 1
To start Job Scheduler, either restart the server, or enter:
use sybmgmtdb� go� sp_js_wakeup "start_js",1 go�