SQL Server 黑盒跟蹤 -- 深入進階

來源:互聯網
上載者:User

標籤:黑盒跟蹤   blackbox   trace   

SQL Server 黑盒跟蹤 -- 深入進階

當你報告錯誤給支援供應商時,確保要提供Blackbox.trc和Sqldiag.txt檔案。


建立Blackbox.trc檔案:

1. 建立跟蹤

2. 開啟跟蹤

3. 在運行sqldiag工具前停止跟蹤


你可以用下面的預存程序,trace_blackbox,去建立,啟動,然後停止黑盒跟蹤。


拷貝下面的指令碼到查詢分析器,然後指令碼,建立trace_blackbox預存程序。注意,如果你要在master資料庫建立它,你必須在master資料庫運行該預存程序。

if exists (select * from dbo.sysobjects where id = object_id(N‘[dbo].[trace_blackbox]‘) and OBJECTPROPERTY(id, N‘IsProcedure‘) = 1)drop procedure [dbo].[trace_blackbox]GOSET QUOTED_IDENTIFIER ONGOSET ANSI_NULLS ONGOCREATE PROCEDURE trace_blackbox @on int = 2 AS/* If no argument is passed to the @on parameter then get the current blackbox trace status.If @on is zero then stop and delete the blackbox trace.If @on is one then create and start the blackbox trace.*/declare @traceid int, @blackboxstatus int, @dir nvarchar(80)set @traceid = 0set @blackboxstatus = 0set nocount onSELECT @traceid = traceid FROM :: fn_trace_getinfo(0)where property = 1 and value = 8IF @on = 0 and @traceid > 0beginselect @blackboxstatus = cast(value as int) FROM :: fn_trace_getinfo(0)where traceid = @traceid and property = 5IF @blackboxstatus > 0 exec sp_trace_setstatus @traceid,0 --stop blackbox traceexec sp_trace_setstatus @traceid,2 --delete blackbox trace definitionendIF @on = 1beginIF @traceid < 1 exec sp_trace_create @traceid OUTPUT, 8 --create blackbox traceexec sp_trace_setstatus @traceid,1 --start blackbox traceendset @traceid = 0set @blackboxstatus = 0SELECT @traceid = traceid FROM :: fn_trace_getinfo(0)where property = 1 and value = 8select @blackboxstatus = cast(value as int) FROM :: fn_trace_getinfo(0)where traceid = @traceid and property = 5IF @traceid > 0 and @blackboxstatus > 0beginselect @dir = cast(value as nvarchar(80)) FROM :: fn_trace_getinfo(0)where traceid = @traceid and property = 2select ‘The blackbox trace is running and the trace file is in the following directory.‘select @dir + ‘.trc‘endELSE select ‘The blackbox trace is not running.‘set nocount offGOSET QUOTED_IDENTIFIER OFFGOSET ANSI_NULLS ONGO


啟動黑盒跟蹤,在查詢分析器執行如下命令:

trace_blackbox 1


檢查黑盒跟蹤的狀態,可以執行如下命令:

trace_blackbox


停止黑盒跟蹤,可以運行如下命令:

trace_blackbox 0


本文出自 “滴水石穿” 部落格,請務必保留此出處http://ultrasql.blog.51cto.com/9591438/1583072

SQL Server 黑盒跟蹤 -- 深入進階

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.