What\'s is the advantage of using Asynchronous processing in SQL Server over .NET Asynchronous processing? Aren\'t they the same? I have a hard time to understand what is th
From this article SQL Server 2008 Books Online (October 2009) - Performing Asynchronous Operations, I quote:
Asynchronous processing enables methods to return immediately without blocking on the calling thread. This allows much of the power and flexibility of multithreading, without requiring the developer to explicitly create threads or handle synchronization.
If you have explicitly created those threads and handled the synchronization, perhaps you probably will not find much difference.