Greetings,
I'm new to the forum, so please forgive any breaches of etiquette and let me know so I can avoid them in the future.
I'm having trouble with a query that is truncating a memo field. I found Allen Browne's list of reasons this can happen, and I'm pretty sure none of them apply in this case...I'm not messing with totals, I don't have anything in the field's format property, I'm not concatenating, I'm not using a unique query, and while I'm not sure what a union query is, I'm pretty sure I'm not doing that either since the word "union" does not appear anywhere in the SQL. I have verified that the table the field comes from is using a memo field. Any thoughts?
Here is the SQL statement:
Code:
SELECT ALUMNI_APRCONF.APRCONF_PIDM, ALUMNI_APRCONF.APRCONF_COMMENT AS [DNC Comment]
FROM ALUMNI_APRCONF INNER JOIN ALUMNI_APRSUBJ ON (ALUMNI_APRCONF.APRCONF_PIDM = ALUMNI_APRSUBJ.APRSUBJ_PIDM) AND (ALUMNI_APRCONF.APRCONF_IDEN_CODE = ALUMNI_APRSUBJ.APRSUBJ_IDEN_CODE) AND (ALUMNI_APRCONF.APRCONF_GRP_SEQ_NO = ALUMNI_APRSUBJ.APRSUBJ_GRP_SEQ_NO)
WHERE (((ALUMNI_APRSUBJ.APRSUBJ_SUBJ_CODE)="DNC"));
Laurie