MS SQL Server's equivalent to PostgreSQL's EXPLAIN -
is there sql server equivalent postgresql's explain
command can run on sql server 2008 r2 express (ie. without sql profiler)?
you should use set showplan_all on before submitting query display execution plan. note, though, scheduled removed in favour of showplan_xml in future version.
Comments
Post a Comment