On the Query menu, click on ‘Include Advance Execution Plan’ or click the toolbar button.
Now open a new query window, type the following queries and execute them.
Now open a new query window, type the following queries and execute them.
use Northwind;
set
statistics io
on;
set
statistics time
on;
Select
top 5 *
from Customers
You should be now able to see additional information in the message tab and execution plan tab (along
with result tab in lower window pane)
Comments