Hi,
in Access 2003 I am combining several queries using 'UNION' as each query has the same columns.
When I execute the queries individually there is no problem. When I join them as following:
SELECT * FROM Aviation
union
SELECT * FROM Construction
union
SELECT * FROM [Financial Lines]
union
SELECT * FROM LIAB
union
SELECT * FROM MARINE
union
SELECT * FROM Motor
UNION
SELECT * FROM PROP;
I get the error 3163: The field is too small to accept the amount of data you attempted to add. Try inserting or pasting less data.
I can't understand this message, as my result is a query and not a table.
Thanks for any help.
Kingsley