Share via

Implicit Conversion in AzureSQLDB

Vijay Kumar 2,061 Reputation points
2022-12-16T08:34:11.247+00:00

Hi Team,

Could you please what is this warning?
271333-image.png

Azure SQL Database

Answer accepted by question author

Alberto Morillo 35,506 Reputation points MVP Volunteer Moderator
2022-12-16T17:47:54+00:00

The warning is informational. If your query performed slowly, or you noticed that cardinality estimates were incorrect, the warning would give you information about where to look for a possible cause.

This means also implicit type conversions cannot effectively use an index. The query optimizer uses the index cardinality to generate an optimal query plan for a given query. It also uses the index cardinality to decide whether to use the index or not in the join operations and WHERE clause. For performance, the ideal is to have the data types match, instead of allowing the implicit conversion to happen.

Was this answer helpful?

0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.