tags:

views:

52

answers:

3

How can I see the execution plan for stored procedures and triggers in SQL Server?

+1  A: 

Yes, you can using SQL Profiler. See Using SQL Server Profiler

Mitch Wheat
+1  A: 

Assuming you're using MSSQL, yes, see here

SqlACID
+1  A: 

you can do

set showplan_text on

or hit CTRL + K and it will be included as a separate tab next to query results

SQLMenace