i have a stored proc that i pass a tablename into and then it has logic in it that will update n number of records in the given table.
i want to build a script that will run n umber of proc calls at the same time and not sequentially. So, theoretically run the update across all the tables at the same time.
anyone know of a way i can do that?
So far the only way i can think of to do this is to dynamically create n number of jobs, each w/ asepearate proc call for a given table and have them scripted to start at the same time. Id rather not do that though.