Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What profiler to use with sql express? [closed]

Tags:

is there a way to monitor detail of sql calls in express version?

like image 628
zsharp Avatar asked Mar 05 '09 20:03

zsharp


People also ask

What replaced SQL profiler?

A new hope: The Extended Events (XE) XE will replace the SQL Profiler in the future versions. By the moment, SQL Server includes Profiler and XE. The XEs is a feature included in SQL Server 2008. It is a lighter option that consumes less resources than the Profiler.

Does SQL Server Agent work with Express?

SQL Server Express doesn't include SQL Server Agent, so it's not possible to just create SQL Agent jobs. What you can do is: You can create jobs "manually" by creating batch files and SQL script files, and running them via Windows Task Scheduler.

Is SQL profiler free?

Free Tool SQL Data Profiler | IDERA.


2 Answers

Try SQL Express Profiler.

I've used it a bit and it seems to work as advertised.

like image 52
Corbin March Avatar answered Oct 07 '22 19:10

Corbin March


As most of the profilers mentioned above seem to be dead or gone commercial, I would like to share what I found some days ago:

SQL Express Profiler

Since CodePlex has been retired, the project moved to GitHub and seems to have no binary download options anymore, so you have to compile it from source code.

I'm currently using it with SQL Server Express 2012 to monitor queries form my NHibernate applications (didn't want to add log4net just for this purpose and show_sql outputs only to console window which I don't have in my WCF service).

Really nice and stable utility. I find it much easier to use than MS SQL Profiler which needs various settings, trace profiles for various server versions and what not. Express Profiler - just launch, hit Run, and all the T-SQL and sp_execute queries are displayed.

It's open source, you can add even more features if you wish. I guess, Clear button would be useful because now you have to Stop and Run again to clear the list.

like image 35
JustAMartin Avatar answered Oct 07 '22 18:10

JustAMartin