Sql-server – List Prepared Statements

prepared-statementsql serversql-server-2008

Anybody know how I can list the prepared statements that are in a SQL Server instance?

Best Answer

select
    cp.objtype,
    st.text
from sys.dm_exec_cached_plans cp
cross apply sys.dm_exec_sql_text(cp.plan_handle) st
where cp.objtype = 'prepared'

That above query will return all of the prepared plans that are cached, as well as their corresponding SQL text.