Maybe I was the only one..
What I ended up doing was using an admin database to manually run jobs. I created a schedules table for all jobs on all instances. Every ten minutes, I run 2 stored procedures. One queries the schedules table, calculates what should run in the next 10 minutes, and puts the jobs into a queue table. The second procedure loops through the queue table, starts each job on the instance specified, and removes the row from the table.
The procedures are fairly complex, but the system has worked without fail for almost 9 months now.,Maybe I was the only one
↧