Hi I was monitoring the packets communication between my client server and sql server. There is query which retrieves about 10mb of data. during which there are a lot of windows update. Also while transferring the data from sql server in half way of transfer would be TCP ACK from the client and then after 25ms there would be window update after which only the transfer would start again. This pattern would continue till the end of transfer. asked 06 Jul '14, 01:44 scara |
One Answer:
Zero window is not a request. It is the client machine announcing that it has no more room in its receive buffer, which forces the sender to stop transmitting. This means that the client application is not reading the data as fast is it's coming in. answered 06 Jul '14, 14:57 Jim Aragon |