Query truncating memo fields

AccessNut

Registered User.
Local time
Yesterday, 16:54
Joined
Jun 23, 2007
Messages
16
This is the query I'm using:

SELECT DISTINCT t_Table1.[AssetNumber], t_Table1.DESCRIPTION
FROM q_Query1 INNER JOIN t_Table1 ON q_Query1.[AssetNumber] = t_Table1.[AssetNumber];

q_Query1 is a query which only returns AssetNumbers.

The [DESCRIPTION] field in t_Table1 is a memo field. It contains text, and linebreaks.

The query result truncates the description.


I can't figure out what's wrong. Thanks for your help.
 
OK, there must be a bug in Access. I rewrote the query exactly as before and now it is not truncating anymore. Don't know what to make of it.
 

Users who are viewing this thread

Back
Top Bottom