Now that you mention the "append" option, back in the old days of Dbase all
you had to do was precisely that: open a table (called database in those
days) and issue a simple command: "append from ???" and voila.
Unfortunately, nowadays things got a bit more complicated. As far as I can
see (please remember I am a newbie) there is no such simple command or menu
option in Access 2000, is it? If there is one please let me know where to
find it. Thanks
There is. It's an Append Query. The two tables need to either be in
the same database (.mdb file, container, not to be confused with a
dBase database), or one must be linked.
A simple append query appending all fields, all records of
identically-structured tables is just about as easy as the dBase
append:
INSERT INTO thistable
SELECT * FROM thattable;
and it can be constructed readily in the query design grid - just
select the table you're copying from, select all the fields, and
change it to an Append query with the Query menu option or the
query-type tool on the toolbar. Access will ask what table you want to
append from; name it and run the query.