|
|
Browse by Tags
All Tags » Troubleshooting » Trace » Tools (RSS)
-
This is a recommendation I believe is worth repeating from time to time: Make sure you match data types when you write TSQL code. Else you in most cases end up with an implicit data type conversion. And in worst case, this conversion is performed at the column side - not the literal side of your query. What does that mean? Consider below:
WHERE ...
|
|
|
|