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 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...
by Adam Fulton | Sep 17, 2021 | SQL Server
We get many requests to help with performance issues. we strongly recommend users to sign up: SELECT sqlschema.name AS 'SchemaName', object_name(sqlfrag.object_id) AS 'TableName', sqlindexes.name AS 'IndexName', sqlfrag.alloc_unit_type_desc AS 'AllocUnitType',...