存档
ASE中在会话级别得到SQL语句的抽象查询计划:
set showplan on
go
set statistics io,time on
go
set noexec on
go
--<<<SQL语句>>>
set noexec off
go
set statistics io,time off
go
set showplan off
go
如果知道会话的spid,可以执行:
sp_showplan @sp_id,null,null,null
查看该会话正在执行的最后一条SQL语句的抽象查询计划。