I am using SQL2008 and want to export data from an SQL table to excel, make changes and import it back into the SQL table. How can this be done? IE I have a master file that has 20 fields, The key is EmpNo and of the 20 fields I want to export 4 fields to excel (and make changes).
current:
EmpNo Field1 Field2 field4 Field4
2401001 5 6 7 Yes
export to excel and change
EmpNo Field1 Field2 field4 Field4
2401001 8.5 4.5 6 No
For the import back into SQL how can I match the EmpNo and update fields 1/2/3/4?
Thanks in advance for suggestions!
current:
EmpNo Field1 Field2 field4 Field4
2401001 5 6 7 Yes
export to excel and change
EmpNo Field1 Field2 field4 Field4
2401001 8.5 4.5 6 No
For the import back into SQL how can I match the EmpNo and update fields 1/2/3/4?
Thanks in advance for suggestions!