top of page

What Are The Different Versions Of SQL Server?
Microsoft SQL Server is a relational database management system (RDBMS) that is used to store, retrieve, and manage data. It is available...
MikeBennyhoff
Jan 5, 20235 min read


Query how many days has the server been running without a reboot?
Method #1 Select dateDiff(day,login_time, GetDate()) as 'Days Running' From sys.dm_exec_sessions WHERE login_time = (SELECT...
MikeBennyhoff
Jan 5, 20231 min read


SQL Server Locking, Blocking, And Deadlocks
Information on SQL Server Locking and Blocking - How to detect, manage and kill blockers - Sample T-SQL code for blocking alerts
MikeBennyhoff
Jan 3, 202311 min read


SQL Server Kill Process
Ways to kill a process in SQL Server, including SSMS and the Kill command, why killing a process has drawbacks
MikeBennyhoff
Jan 3, 20238 min read


SQL Server, Statistics
In SQL Server, statistics are used by the query optimizer to determine the most efficient way to execute a query. Statistics are created...
MikeBennyhoff
Jan 3, 20234 min read
bottom of page