In this example, there is only one SP overhead. We'll assume the SP returns either a single rowset which the client will split/process or multiple rowsets:
int[] ids; // array of idsCallSQLStoredProc(ids) // stored procedure returns more than one row for each idIn this example, the SP call overheads are n times the single call. and the calls are serialized:
foreach(item in mylist) { CallSQLStoredProc(item.id);In the third alternative:
foreach(item in mylist) { StartSQLStoredProc(item.id);// Continue building the page until you reach a point where you absolutely have to have the dataThis still has the n DB call overheads, but the performance improvement can depend on the capacity of the SQL Server and network in order to parallelize the workload. In addition you get the benefit of the ability to start the SQL Server working while the page is building.
The single SP solution can still win out, particularly if it can assemble a single result set with a UNION where the SQL Server can parallelize the task. However, if the result sets have separate schemas or the UNION cannot perform well, A multiple SP asynchronous solution can beat it out (and can also take advantage of the ability to do other work in the page).
