I have the following query:
--
INSERT INTO GoatPerformance ( FemaleAnimalCode )
SELECT FemaleAnimalCode
FROM Matings;
--
it does not insert the values of FemaleAnimalCode from Matings to GoatPerformance. It gives me the following error message:
"Farm Management set 0 fields to Null due to a type conversion failure and it didn't add 0 records to the table due to key violations 0 records due to lock violations and 9 records due to validation rule violations"
Can anybody help?
Thanks
--
INSERT INTO GoatPerformance ( FemaleAnimalCode )
SELECT FemaleAnimalCode
FROM Matings;
--
it does not insert the values of FemaleAnimalCode from Matings to GoatPerformance. It gives me the following error message:
"Farm Management set 0 fields to Null due to a type conversion failure and it didn't add 0 records to the table due to key violations 0 records due to lock violations and 9 records due to validation rule violations"
Can anybody help?
Thanks