Access 2010
Split Database
Trying to insert records but autonumber appears to be blocking my insert. This is the SQL code I'm using
Code:
insert into students(last_name, first_name, date_enrolled, sex, dob, stu_address_1, stu_city, stu_state, stu_zip)
select last_name, first_name, date_enrolled, sex, dob, stu_address_1, stu_city, stu_state, stu_zip
from student_data_dump;
I'm getting the error message "Microsoft Access can't append all the records in the append query"
This is really getting on my nerves. There is no primary key in student_data_dump and the autonumber field is not included in the INSERT INTO statement. What is going on!?!?!?!!? lol thanks in advance