vote up 1 vote down star

Assume the Stored Proc takes 10 minutes to run and returns no data.

What is the proper way to call a stored procedure in SQL Server and have your code not wait around for the result? Is there a way to handle it from the T-SQL or the connection? Something that works in ADO.NET and classic ActiveX ADO?

The only way I thought of is:
1) Create a Job in your T-SQL
2) Load your T-SQL based code into Step one of the Job
3) Make sure the last line of your code removes the Job
4) Execute Job (I'm pretty sure this doesn't leave you hanging for a response) I know this is very bad and hackish... but

Is there some other T-SQL that I'm not thinking of that you can wrap a stored proc in to say "I know there is no response... so I'm choosing not to wait."?

flag

68% accept rate

4 Answers

vote up 0 vote down

Run it in a separate thread and just let the thread die.

link|flag
vote up 1 vote down

For .Net, try the .BeginExecuteNonQuery() method of your SqlCommand object. Not sure how that would work from ActiveX ADO, though.

link|flag
vote up 7 vote down

Yes, you can

  1. call it asynchronously, using SqlCommand.BeginExecuteNonQuery()
  2. Or call it asynchronously on a delegate (will use trhead from thread pool),
  3. or on a separate thread (created yourself)
  4. In Classic ADO, Use the Option parameter in the Connection's Open method:

    oConnection.Open( , , , adAsyncConnect)

link|flag
vote up 0 vote down

I would investigate rewriting any SP that took that long unless it was making changes or inserting a very large number of records. If you have an sp taking more than 30 seconds from the user interface, I's say you have a very strong possibility of a performance problem. Does the proc in question have a cursor? If you so you can probably get it down to millseconds with proper performance tuning. I would alawys consider performance tuning before doing a workaround to make the user interface go on without the proc finishing.

You say it returns no records, but what would the user need to know if it fails? If they have gone on to something else, they will think it has successfully completed.

link|flag
I want a certain number of users in the "admin" role to be able to trigger this proc. Its not really a standard UI proc. – B. Tyndall Jan 19 at 19:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.