Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SQL Server Query Size of Results Set

Tags:

sql

sql-server

Is there anyway in SQL Server to determine the size in MEGS of data that a query returned in a query from Mgmt Studio in the Result Set?

like image 367
user728584 Avatar asked Jun 23 '11 06:06

user728584


1 Answers

You can turn on client statistics (Query menu, Include Client Statistics) which gives number of bytes returned from the server when the query is executed.

like image 87
Will A Avatar answered Nov 15 '22 17:11

Will A