We are developing a web based application to run queries against our databases, so our ops team can execute queries through web based interfaces rather than loggin into the sql server.
Is there anyway i can show large results in realtime like its displayed in the query analyzer. i cannot use pagination here as the query will be written by the user every time.
Thanks
Maybe, you could use infinite scroll?
Yes you could - I guess it would probably go a little bit like this:
The key is choosing a good value for N - the smaller it is the more responsive the UI, however the larger it is the faster the overall transfer of results will be.