Hi,
 
How to solve the deadlock problem in MS SQLServer 2000. My application is in C#. 
In my application, I have to run the other different Exe's from my application. 
I am starting the processes through Process.Start() method. 
 
the code look like below.
System.Diagnostics.Process objProcess ;
::
objProcess = new System.Diagnostics.Process();
::
objProcess.StartInfo.Arguments = strParameter ;
objProcess.Start();
there may be situations where i may have to start the same exe at the same time. the same exe's will be running parallel.
the number of exe can also be large in number. in those cases, i am getting the Deadlock problem and all my exe that are running are stopped abruptly.
Is there any solution to solve this problem.
 
Regards,
Krishnan


SPONSORED LINKS
Basic programming language C programming language Computer programming languages
Programming languages C programming language Software programming language


YAHOO! GROUPS LINKS




Reply via email to