Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / database / SQL-Server

How to trace SQL Server Express without using SQL Profiler

5.00/5 (7 votes)
20 Feb 2012CPOL 100.4K  
SQL Profiler is not included with SQL Express, this tip will help if you need to track client activity.
To trace T_SQL queries submitted to SQL Express:

Start the SQL Express Service from the command prompt (run command prompt as Administrator if you are working on Windows 7 or Vista) with the following Trace Flag:


net start MSSQL$SQLEXPRESS /T4032

This now causes all queries issued by all conections to be traced. In order to have the trace output sent to the error log, enable trace flag 3605.


Execute the following in SQL Server Management Studio:


dbcc traceon(3605, -1) -- The -1 makes this global, i.e. applies to all sessions / connections

The logs can be found in C:\Program Files\Microsoft SQL Server\MSSQL10_50.SQLEXPRESS\MSSQL\Log\ERRORLOG.


The logs will now contain the queries that were issued by the clients.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)