If you do go for copying the table remember you've still got to add any indexes back to the table afterwards, as they're not done with a create / select query like
create table tablecopy as SELECT job_id,
fname,lname,bus_ph,mobile,ph,address FROM sometable;
drop table sometable;
rename table tablecopy to sometable;