Hi All,
I'm having the same problem with truncation when I use a UNION query on a memo field. Here's a simplified version of the query:
SELECT program, desc as X
FROM programs
UNION
SELECT oldProgram, desc as X
FROM oldPrograms;
program and oldProgram are text, desc is memo, and gets cut off at 510 chars in MS Access 2002.
The individual queries work just fine.
Is there any way to fix this? I see a reference to something in Access Forms, but I can't find it!
... vj