The topic describes the DF034 T-SQL code analysis rule.
BEST PRACTICE
A variable-size datatype of very small length is used.
It is not recommended to use variable-length data types with sizes less than 3 symbols.
Using such small sizes may lead to inefficiencies in storage and processing, as variable-length data types are optimized for larger data sizes. Additionally, using very small sizes may not provide enough flexibility for storing meaningful data and could potentially lead to truncation or data loss if the data exceeds the specified size.
DECLARE @v VARCHAR(1)
DECLARE @v VARCHAR(30)