I got a strange error that I don't understand. I am trying to add fields into the table Employee using SQL code. I took a screen shot of the error but I don't really understand this img attachment thing here so here is what it said:"...Microsoft Access set 1 field to Null value 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 0 records due to validation rule violations. Do you want to run the action query anyway?To ignore the errors and run the query, click Yes."I clicked yes but it did not add the line to the Employee table. Has anyone gotten this error before? My only thought is that in the Employee table, all of the emp_id records are 8 digits long and I am trying to add 3 digit ones. The field size for that particular field is Long Integer. Could that be why?INSERT INTO Employee (emp_id, manager_id, emp_fname, emp_lname, dept_id, street, city, state, zip_code, phone, status, ss_number, salary, start_date, birth_date, bene_health_ins, bene_life_ins, bene_day_care, sex)VALUES ('102', '501', 'Fran', 'Whitney', '100', '49 East Washington St', 'Needham', 'MA', '02192', '6175553985', 'A', '388965960', '45700', '#8/28/84#', '#6/5/58#', 'Y', 'Y', 'N', 'F') ;