S
Steve Richter
The strings I want to store in an SQL table will 99% of the time be
short, 128 characters or less. But they could be much longer ( the
RawUrl from the asp.net Request object ).
What is the best way to declare such a string?
Will I be wasting a lot of space if I declare the column as
VarChar(9999)? Or do strings in SQL just use the actual length of the
string?
thanks,
-Steve
short, 128 characters or less. But they could be much longer ( the
RawUrl from the asp.net Request object ).
What is the best way to declare such a string?
Will I be wasting a lot of space if I declare the column as
VarChar(9999)? Or do strings in SQL just use the actual length of the
string?
thanks,
-Steve