hi all,
Seems I remember there are certain things you cannot do with text types that you can do with varchar data types.
In general, isn't it best to use varchar rather than text ?
If you have a col text (16) SQL Server reserves that 16 bytes, whereas varchar(16) would only actually use the amount of space the data actually used, ie JOHN would take 4 bytes if in a varchar column. ?
Thanks, John
Seems I remember there are certain things you cannot do with text types that you can do with varchar data types.
In general, isn't it best to use varchar rather than text ?
If you have a col text (16) SQL Server reserves that 16 bytes, whereas varchar(16) would only actually use the amount of space the data actually used, ie JOHN would take 4 bytes if in a varchar column. ?
Thanks, John