Somehow the datatype is "char", which apparently is limited to 255 characters. BUT the DB is storing more than 255 characters.
Converting the field to TEXT works perfectly for some reason.
SELECT CONVERT(TEXT,fld_name) FROM TABLE_NAME
answered Jun 2 '10 at 21:30
Derek Adair