SQL Server如何查看SQL語句的執行時間

來源:互聯網
上載者:User

在SQL Server資料庫中,如何才能查看SQL語句的執行時間呢?本文將為您介紹查詢方法,供您參考,希望對您能夠有所協助。

下面這種是SQL Server中比較簡單的查詢SQL語句執行時間方法,通過查詢前的時間和查詢後的時間差來計算的:

declare @begin_date datetime
declare @end_date datetime
select @begin_date = getdate()
<這裡寫上你的語句...>
select @end_date = getdate()
select datediff(ms,@begin_date,@end_date) as '用時/毫秒'
 

2:下面這種方法比較全面,將執行每個語句時採取的步驟作為行集返回,通過階層樹的形式展示出來

set statistics profile on
set statistics io on
set statistics time on
go
<這裡寫上你的語句...>
go
set statistics profile off
set statistics io off
set statistics time off

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.