Hi,
An append query is giving me the following error:
qryPar can't append all the records in the append query
qryPar set 0 field(s) to null due to at type conversion failure, and it did not add 4626 records due to key violations, 0 records to lock violations, and 0 records due to validation rule violations.
Do you run the query....etc?
I could not see where the problem is. Please let me know if you have an answer. Thanks in advance.
Here is the query code:
INSERT INTO tblPolicies ( PolicyNumber, CarrierNumber, Benefit, ClientNumber )
SELECT tblClientPolicies.PolicyNumber, tblClientPolicies.CarrierNumber, tblClientPolicies.BenefitType, tblClientPolicies.ClientNumber
FROM tblClientPolicies;
Thanks in advance.
An append query is giving me the following error:
qryPar can't append all the records in the append query
qryPar set 0 field(s) to null due to at type conversion failure, and it did not add 4626 records due to key violations, 0 records to lock violations, and 0 records due to validation rule violations.
Do you run the query....etc?
I could not see where the problem is. Please let me know if you have an answer. Thanks in advance.
Here is the query code:
INSERT INTO tblPolicies ( PolicyNumber, CarrierNumber, Benefit, ClientNumber )
SELECT tblClientPolicies.PolicyNumber, tblClientPolicies.CarrierNumber, tblClientPolicies.BenefitType, tblClientPolicies.ClientNumber
FROM tblClientPolicies;
Thanks in advance.