News Feed
Jobs Feed
Sections




News Archive
Brian Swan's Blog:
Troubleshooting and Performance Tuning with SQL Server Traces
December 23, 2010 @ 12:02:41

Brian Swan has posted an example of debugging with SQL Server traces you can use in your PHP applications to help figure out what all's happening each time you run a query.

Unfortunately, SQL Profiler (a tool that allows you to easily monitor server activity) is not included as part of SQL Server Express. Fortunately, SQL Profiler is just a nice UI for functionality that is built into SQL Server (including the Express version). So, in this post I'll show you how to create, read from, and write to a trace file using SQL and SQL Server Management Studio (which you can download for free from here).

He breaks the process down into a few steps with sample code and SQL for each:

  • Create a trace (with the sp_trace_create stored procedure)
  • Set the events to be monitored
  • Filter trace data
  • Start the trace
  • Read trace data (this is where PHP comes in, code included)

With the results you can see things like read time, write time and CPU used for each part of the query making it simple to pick out the offenders.

0 comments voice your opinion now!
sqlserver performance troubleshoot tutorial traces


blog comments powered by Disqus

Similar Posts

Community News: PHPKnowHow.com - PHP in Plain English

Robert Basic: Working with custom view helpers in Zend Framework 2

IBM developerWorks: Use Ajax with PHP and DB2 9 - Xajax

Tobias Schlitt's Blog: Sending HEAD requests with ext/curl

phpRiot.com: Zend Framework 101: Zend_Cache


Community Events









Don't see your event here?
Let us know!


api framework opinion community code functional development testing unittest composer release tool event introduction interview example language zendframework2 object podcast

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework