
Signature
Rick Brandt, Microsoft Access MVP
Email (as appropriate) to...
RBrandt at Hunter dot com
Hi Rick
Thanks for the advise but how do I create a Union All.
Below is my union command.
SELECT ProjectID, RecID, RecommendationNo, AuditFinding, Recommendation,
FROM Recommendations;
UNION SELECT ProjectID, RecID, RecommendationNo, AuditFinding,
Recommendation,
FROM Archived_Recommendations;
> > Good day
> >
[quoted text clipped - 9 lines]
> UNION eliminates duplicates and that is what truncates a memo field. A UNION
> ALL (which does not eliminate duplicates) would not truncate a memo.
Rick Brandt - 20 Jun 2007 04:17 GMT
> Hi Rick
>
[quoted text clipped - 8 lines]
> Recommendation,
> FROM Archived_Recommendations;
See change above.

Signature
Rick Brandt, Microsoft Access MVP
Email (as appropriate) to...
RBrandt at Hunter dot com
Mail Merge Help - 20 Jun 2007 04:19 GMT
Thanks Rick
I just found out how to create a Union All
> Hi Rick
>
[quoted text clipped - 22 lines]
> > UNION eliminates duplicates and that is what truncates a memo field. A UNION
> > ALL (which does not eliminate duplicates) would not truncate a memo.
John W. Vinson - 20 Jun 2007 04:19 GMT
>Thanks for the advise but how do I create a Union All.
SELECT ProjectID, RecID, RecommendationNo, AuditFinding, Recommendation,
FROM Recommendations;
UNION ALL SELECT ProjectID, RecID, RecommendationNo, AuditFinding,
Recommendation,
FROM Archived_Recommendations;
That is... just replace the keyword UNION with UNION ALL.
John W. Vinson [MVP]
Mail Merge Help - 20 Jun 2007 04:27 GMT
Dear John and Rick
Thanks for getting back to me in such a short time. I have found out that
all I need to do is all the word ALL between the UNION SELECT.
Thanks once again. This advise is very usefull.
> >Thanks for the advise but how do I create a Union All.
>
[quoted text clipped - 8 lines]
>
> John W. Vinson [MVP]