Hi All, using a C# 3.5 Windows form, I am calling a stored procedure that can take 30 minutes to execute (please no knocks or debate on that...it’s doing a lot to a lot of data and is fully optimized). I don't want to make my user leave the app open for that entire time period, so I would like to call the sproc, let it fly and let them shut down the app and come back later. I am using out-of-the-box System.Data.SqlClient objects: SqlCommand, SqlConnection, etc.
Does anyone know if I can do this?
-Thx in advance!
Oh, against SQL Server 2005 if that makes any difference...