P
pn
I am trying to run a query that will update approx 2000
records in a table but I'm getting an error that 420
records were not updated due to Validation Rule
violations. I don't have any validation rules on the 3
fields. My code is:
UPDATE tblM1 INNER JOIN tblC1 ON tblM1.PartID =
tblC1.PartID SET tblM1.CField1 = [tblC1].[Field1],
tblM1.CField2 = [tblC1].[Field2], tblM1.CField3 = [tblC1].
[Field3];
There are cases where there's data in tblC1.Field1 but not
in Field2 or 3. Could this be a factor?
records in a table but I'm getting an error that 420
records were not updated due to Validation Rule
violations. I don't have any validation rules on the 3
fields. My code is:
UPDATE tblM1 INNER JOIN tblC1 ON tblM1.PartID =
tblC1.PartID SET tblM1.CField1 = [tblC1].[Field1],
tblM1.CField2 = [tblC1].[Field2], tblM1.CField3 = [tblC1].
[Field3];
There are cases where there's data in tblC1.Field1 but not
in Field2 or 3. Could this be a factor?