Question : MySQL seems not to have setting to show you queries that use SOME indexes but still also do […]
Tag: execution-plan
Need to know workarounds to tackle a query plan [closed]
Question : Closed. This question needs to be more focused. It is not currently accepting answers. Want to improve this […]
Shredding Query Plan XML For Potential Skewed Estimates – Data Type Conversions
Question : I’m using the below T-SQL to check for root level estimate skews in execution plans by pulling the […]
What does “Rows Removed by Index Recheck” without “lossy” mean?
Question : Here’s part of an EXPLAIN ANALYZE from Postgres 9.6: -> Bitmap Heap Scan on cities (cost=90.05..806.49 rows=265 width=4) […]
Weak performance of query
Question : I need help in improving very poor query performance. Query SELECT DISTINCT ROW_NUMBER () over (order by WR.WPIS_ID) […]
Cardinality Estimator Question after 2014 SP1 + CU4 Upgrade
Question : We recently upgraded from SQL Server 2008R2 to SQL Server 2014 SP1 + CU4. After a couple of […]
Warning in query plan “Cardinality Estimate”
Question : create table T(ID int identity primary key) insert into T default values insert into T default values go […]
Programatically scan a stored procedures parameters
Question : I have been trying to figure out how to scan a stored procs parameters from the execution plan. […]
Re-run a specific actual query plan
Question : I have captured an actual query plan for a specific query. After this I’ve changed a few things […]
SQL Server – Prevent Clustered Index Scan on a specific table
Question : My database contains a specific table that is quite large (250+M rows, 100+GB data space). Generating a clustered […]