efandango said:
I have a one table query with a user defined memo field.
Address:
how can I convert this field from a text field to a memo so that the
output can handle more than 255 characters?
Could you show an example where the output is limited to 255 characters?
An expression should not be limited to 255 characters. For example:
SELECT len([Expr1]) from (
SELECT String(300,"a") AS Expr1
FROM [TableContainingOneRecord])
returns 300 for me. I'm not clear why any conversion is necessary,
unless you are storing the data or displaying it in some control that is
limited to 255 characters.
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.