Implicit Conversion in SQL Server
·
1 min read
Table of Contents
Audit Your Data Types
The following query shows a count of each data type in use across all user tables. This is a useful starting point for spotting mismatches that lead to implicit conversions.
| |
Further Reading
- Exploring the Plan Cache – Warnings – finding conversion warnings inside cached query plans
- Finding Implicit Column Conversions in the Plan Cache – Jonathan Kehayias’s approach to mining the plan cache for implicit conversions
- Implicit Conversion Costs – measuring the real performance impact
- Do SQL Server User Defined Datatypes (UDT) Affect Performance? – whether UDTs introduce hidden conversion overhead