What is the purpose of SQL Profiler in SQL server?

What is the purpose of SQL Profiler in SQL server?

SQL profiler is a tool to monitor performance of various stored procedures. It is used to debug the queries and procedures. Based on performance, it identifies the slow executing queries. Capture any problems by capturing the events on production environment so that they can be solved.

What is the purpose of SQL Profiler in SQL server?

SQL Profiler captures SQL Server events from a server. The events are saved in a trace file that can be used to analyze and diagnose problem.

The different purposes of using SQL Profiler are:
It is used to find the cause of the problem by stepping through problem queries.
It is very useful to analyze the cause of slow running queries.
It can be used to tune workload of the SQL server.
It also stores security-related actions that can be reviewed by a security administrator.
SQL Profiler also supports auditing the actions performed on instances of SQL Server.
Ways available in SQL Server to execute SQL statements
SQL Server uses different ways to execute SQL statements which are listed below.......
Explain Full-Text Query in SQL Server
SQL Server Full-Text Query: SQL Server supports searches on character string columns using Full-Text Query........
Phases a transaction has to undergo
The several phases a transaction has to go through are listed here. Database is in a consistent state when the transaction is about to start.......
Post your comment