Where I found out milliseconds for the execution of a query in SQL Server 2008 management studio?

sql-server, sql-server-2008

Solution

use SET STATISTICS TIME ON/OFF in beginning and end of query

Problem

Where I found out milliseconds for the execution of a query in SQL Server 2008 Management Studio? In Actual Execution Plan I cannot see the time.

Original source