Is there a SQL Server Profiler for SQL Server Express? [closed] Is there a SQL Server Profiler for SQL Server Express? [closed] sql-server sql-server

Is there a SQL Server Profiler for SQL Server Express? [closed]


SP1 of SQL Server Express 2012 Advanced Services now includes the full SQL Management Studio, and this has the profiler.


Ok, old question but maybe this helps other people with same problem.

You can activate the SQL Server Express Error Log in a way that it monitors all statements runned agaist every database. To do so you must run the following on an elevated command prompt (that is, a command prompt runned as administrator):

net stop MSSQL$SQLEXPRESSnet start MSSQL$SQLEXPRESS /T4032

Now, using the SQL Server Management Studio run the following:

dbcc traceon(3605, -1)

Now you can look at the ERRORLOG file within the Log folder of MS SQL folder (which may be "C:\Program Files\Microsoft SQL Server\MSSQL11.SQLEXPRESS\MSSQL\Log" for the default installation of SQL Server Express 2012).

Hope this helps someone (as it sure helped me)


IIRC, the profiler is one of the features not available for SQL Server Express.

However, I'm also under the impression that SQL Server Express still supports many of the features of the for-pay editions, and it's just that they are disabled in the Express Edition of Management Studio. So if you also have access to a full db and the management studio that comes with you might be able to point that profiler at your express installation.

In this case I suspect that won't work, since the profiler also depends on an extra provided by the database. Still, it's worth a shot.

If it doesn't work there are some third party tools available that should be able to do what you want.