What is SQL Profiler ?

SQL Profiler is a graphical tool that allows system administrators to monitor events in an instance of Microsoft SQL Server. You can capture and save data about each event to a file or SQL Server table to analyze later. For example, you can monitor a production environment to see which stored procedures are hampering performances by executing very slowly.

Use SQL Profiler to monitor only the events in which you are interested. If traces are becoming too large, you can filter them based on the information you want, so that only a subset of the event data is collected. Monitoring too many events adds overhead to the server and the monitoring process and can cause the trace file or trace table to grow very large, especially when the monitoring process takes place over a long period.



You May Interest

What is the Use of DBCC Commands in SQL Server ?

What is the Difference Between VARCHAR and VARCHAR(MAX) Datatypes ...

Using MS SQL COUNT

What is TABLESAMPLE in SQL Server ?

What is the Difference Between UNION and UNION ALL in SQL Server ...