Execute a stored procedure asynchronously

  • Thread starter Thread starter Kyle Jedrusiak
  • Start date Start date
K

Kyle Jedrusiak

Using VBA code is there a way to execute a stored procedure asynchronously?

I don't need a record count, I just need to let the user know that the SP is
still running and possibly allow them to stop it.

Kyle Jedrusiak
 
Good luck. I have found it impossible to stop an asynchronous SQL batch (at
least in SQL Server 2000). ADO lets you "cancel" it, but SQL Server doesn't
notice this and goes on running it anyway...
 
Back
Top