Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations MikeeOK on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Truncated memo field problem

Status
Not open for further replies.

itchyII

MIS
Apr 10, 2001
167
Hi Everyone,
I searched the boards and found out that I'm not the only one with this problem but I don't know what to do about it!! My query is simple enough, no calculations, etc. So what can I do to avoid the truncation of my memo fields?

Code:
SELECT * FROM s_master_1

UNION SELECT * FROM s_master_2

UNION SELECT * FROM s_master_3

UNION SELECT * FROM s_master_4

UNION SELECT * FROM s_master_5

UNION SELECT * FROM s_master_6

UNION SELECT * FROM s_master_7

UNION SELECT * FROM s_master_8

UNION SELECT * FROM s_master_9

UNION SELECT * FROM s_master_10;

Thanks

ItchyII
 
Try use "UNION ALL" rather than "UNION".

Duane
MS Access MVP
Find out how to get great answers faq219-2884.
 
Thanks Duane! Worked beautifully!

ItchyII
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top