Hello we have an SQL server application running over a low bandwith connection. We use ADO.NET.
I was wondering if anybody has any tips on minimizing traffic over the channel. Im looking for answers on ADO.NET/SQL-Server specific tips that make it more efficient. Not obvious answers like ‘dont fetch many records’.
En example for MySql would be ‘enable comptression=true’ in the connection string. I’m cannot find anything on transport layer compression in SQL server.
Do any of you people have experience with this ? Are there important do’s and dont’s that we must know ?
Thanks in advance..
other than return less data and shorten your query text as much as possible there’s not really much you can do.