I have a stored procedure which runs for 8 mins, need to trigger the SP which will update records in multiple tables from WPF application, but thats timing out as the SP runs for 8 minutes, So planning to implement Asynchronous call to the SP like, just triggering the SP to run, which eventually when completed updates the records in 8 minutes. I know that SP can be optimized, but just want to know if at all there is a feature to trigger and dont wait for the result.
Thanks in Advance ..