I want to run two or more procedures in parallel

Posted by binod gyawali on Stack Overflow See other posts from Stack Overflow or by binod gyawali
Published on 2010-03-18T04:00:16Z Indexed on 2010/03/18 4:01 UTC
Read the original article Hit count: 255

Filed under:
|

I have list of procedures. All procedures are not dependent upon each other. So, I need to do is, to run the independent procedures in parallel. I have 4 procedures that are to be run parallel. When the procedures are run successfully, now I need to go to the next task. These procedures create about 10 tables.

Next task is to execute the set of procedures. I have made one table, where I describe the dependency of these procedures to the tables created above. After any one of the above procedures is completed, I should come to this set of procedures, and find out those procedures whose dependency tables are already created. If any procedure whose dependent tables creation is completed, I need to execute this procedure.

Running 4 procedures parallel is done by dts. But, difficulty for me is to transfer the task from the above 4 procedures to the below set of procedures. Please help me to complete my task.

Thanks in advance

© Stack Overflow or respective owner

Related posts about sql

Related posts about server