I found that if a column data type is set as varchar(max) in a table will affect the performance by the following
- large space will be occupied
- indexing is not possible
But does it affect, when I use a query like Cast(column name as varchar(max)) in a column which does not have large values?
I don't seem to find any delay while using a query like above.
Note: I don't have permission to see the column size.