by Adam Fulton | Sep 26, 2021 | SQL Server
Find Missing Indexes before going into production Find missing indexes the right way! First of all, finding a missing index is not a rocket science. Always find and create missing indexes before you deploy the code to the production environment. DBA’s and...
by Adam Fulton | Sep 25, 2021 | SQL Server
What are users executing using SSMS? During a customer review meeting, one of the DBA asked if there’s a quick way to find out What are users executing using SSMS. Though this information can easily be obtained from SP_Who2 system stored procedure, the DBA wanted to...
by Adam Fulton | Sep 24, 2021 | SQL Server
Get a copy of SQL Server 2017 Developer Edition SQL Server developer edition is now free! Finally, Microsoft has made it easy for companies to develop and test SQL Server 2017 by making the developer edition of SQL Server completely free. This is certainly helpful for...
by Adam Fulton | Sep 20, 2021 | SQL Server
SP_What is smarter than SP_Who2! We’ve seen many DBAs scratch their head to find out who is running what in SQL Server. When a user complains about the database performance issue, the first thing DBAs do is run SP_Who or SP_Who2 to see what may be happening in SQL...
by Adam Fulton | Sep 20, 2021 | SQL Server
SQL Agent Job Repeat Failures SQL Agent job failure can be easy to fix but the problem many production DBA’s encounter is the repeat failures of SQL agent job failures. Identifying that there’s a problem would be your first step to fix the problem...