ID: Q95676
The information in this article applies to:
To append from one database to another, the fields in the source database must have the same names as the fields in the target database. Otherwise, blank records will be appended to the target file.
For example, if TEST_A.DBF has a field called NAME and TEST_B.DBF has a field called NICKNAME, the following code will append blank records to TEST_A:
USE TEST_A
APPEND FROM TEST_B
The number of blanks appended will be equal to the number of records
in TEST_B.DBF.
To work around this problem, do one of the following:
-or-
Last Reviewed: June 27, 1995