Hi Joan,
Try this one:
SELECT TOP 1
  DATALENGTH(ldtext), *
FROM
  longtescription
WHERE
  ldtext IS NOT NULL
ORDER BY
  DATALENGTH(ldtext) DESC
The first column in the result set will contain the actual size of the data. NULL columns should be eliminated because DATALENGTH(NULL) returns NULL.
Regards,
Goce.