I have many users on my web site (20000-60000 per day), which is a download site for mobile files. I have remote access to my server (windows server 2008-R2). I\'ve
In your code where you run the stored procedure you should have something like this:
SqlCommand c = new SqlCommand(...) //...
Add such a line of code:
c.CommandTimeout = 0;
This will wait as much time as needed for the operation to complete.