> Out of curiosity, what kind of functionality are you using task center
> for?
Mainly we just need a method of scheduling routine maintenance,
backups, runstats, etc.
> This isn't the answer you were looking for, but...it might be less
> time-consuming to just rewrite the tasks as simple scheduled software
> using bash, ksh, python, perl, ruby, or whatever.
We have Windows 2003 servers, so I think the only default scheduler is
the "AT" scheduler or "Scheduled Tasks" in Control Panel. We could use
these for some functions, but the Task Center has a lot nicer features.
For one thing we can trigger follow up jobs and can run multiple
schedules for the same job. We could probably simulate the same thing
in those schedulers, but it might be just as much effort going that
route. It's kind of brutal setting things up in Task Center, but once
you get things set up it's pretty solid. If they only had the bulk
import and export functions it would be a fantastic product (in my
opinion).
Buck Nuggets - 08 Feb 2005 15:57 GMT
> For one thing we can trigger follow up jobs and can run multiple
schedules for the same job. We could probably simulate the same thing
> in those schedulers, but it might be just as much effort going that
route.
Right - for simple schedulers like cron or whatever windows uses, you
end up putting more logic into the actual script to work around
dependencies than if you were using something like a mainframe
scheduler, or it sounds like task center. I think you can run cron on
windows via cygwin, but it won't support triggers or dependencies.
> If they only had the bulk import and export functions it would be a
fantastic product (in my opinion).
Yeah, I once inherited a data warehouse with 800 source systems (!)
running sql server using DTS (the sql server etl tool). And then
discovered how difficult it was to promote etl packages from dev to
test to prod - since they were all stored in the database. The prior
operation had an entire team retyping them by hand and retesting them
in production. We yanked all that stuff out and replaced it with a
simple custom etl application and our maintenance dropped from
horrifying to almost nothing overnight. I just recently saw a lengthy
sql server magazine article on tips for moving packages from one server
to another - so it appears that they still haven't really figured it
out.
I wonder what's going to be in db2 8.3?
Good luck,
buck