ACC2000: Error Message: Microsoft Access Can't Append All the Records in the Append Query (302504)



The information in this article applies to:

  • Microsoft Access 2000

This article was previously published under Q302504
Novice: Requires knowledge of the user interface on single-user computers.

This article applies only to a Microsoft Access database (.mdb).

For a Microsoft Access 97 version of this article, see 303414.

SYMPTOMS

When you run an append query, you may receive the following error message:
Microsoft Access can't append all the records in the append query.

Microsoft Access set 0 field(s) to Null due to a type conversion failure, and it didn't add 0 record(s) to the table due to key violations, 0 record(s) due to lock violations, and (X) record(s) due to validation rule violations.
Do you want to run the action query anyway?
To ignore the error(s) and run the query, click Yes.
For an explanation of the causes of the violations, click Help.

CAUSE

This message occurs when you try to insert empty strings into a field that has its AllowZeroLength property set to No.

RESOLUTION

  1. Open your destination table in Design view.
  2. Set the AllowZeroLength property of all text fields to Yes.
  3. Set the Required property of all these text fields to No.
  4. Save the changes to the table, and then close the table.
  5. Run your append query.

STATUS

This behavior is by design.

MORE INFORMATION

Steps to Reproduce the Behavior

CAUTION: If you follow the steps in this example, you modify the sample database Northwind.mdb. You may want to back up the Northwind.mdb file and follow these steps on a copy of the database.

  1. Open the sample database Northwind.mdb.
  2. Click Tables under Objects.
  3. Click the Employees table.
  4. On the Edit menu, click Copy.
  5. On the Edit menu, click Paste.
  6. In the Paste Table As dialog box, name the new table Test, click Structure Only under Paste Options, and then click OK.
  7. Open the Test table in Design view, and then set the following properties for the FirstName field:

    Required = No
    Allow Zero Length = Yes

  8. Open the new Test table, enter some new records, but leave the FirstName field blank in some records, and then close the table.
  9. Click Queries under Objects.
  10. Click New.
  11. In the New Query dialog box, click Design View, and then click OK.
  12. In the Show Table dialog box, click the Test table, click Add, and then click Close.
  13. Add the FirstName and LastName fields to the query design grid.
  14. On the Query menu, click Append Query.
  15. In the Append dialog box, click the arrow in the Table Name box, click the Employees table in the list, and then click OK.
  16. On the Query menu, click Run.
  17. Click Yes to the message that you are about to append data to your table.

    Note that you receive the error message that is mentioned in the "Symptoms" section of this article.

REFERENCES

For more information about the AllowZeroLength property, click Microsoft Help on the Help menu, type allowserolength in the Office Assistant or the Answer Wizard, and then click Search to view the topic.

Modification Type:MajorLast Reviewed:12/12/2002
Keywords:kbdta kberrmsg kbprb KB302504