In an ASP.NET application, what happens if an error occurs when returning the results of a stored procedure.
For instance:

In the above diagram, an ASP.NET application calls a stored procedure to retrieve some data, the stored procedure executes, and the SQL server tries to send the results.
But what if IIS is not available, what does the SQL server do?
- Does SQL Server resubmit the results?
- Is there any time?
- Is the server storing data somewhere?
- Does IIS increase sending requests again and again?
source share