I’ve created a query based on a table with a memo field. Some of the memo fields are >255 characters long. If I specify UniqueValues = Yes (DISTINCT), the query result for the memo field is truncated to the portion beyond 255 characters (the first 255 characters are lost). (Memos with <255 characters look okay.) This seems strange to me. Should it be expected? I read somewhere that Access uses only the first 255 characters when comparing strings, but this leading truncation shouldn't be a conseqence of that, should it?
If I specify UniqueRecords = Yes (DISTINCTROW) or if both are = No, this truncation does not occur.
Any ideas what's causing this? Is there a way to avoid it while still using DISTINCT in the SQL?