What I am trying to accomplish seems to be a little tricky in terms of the coding.
I have a fixed field length flat file in SDF (Standard Data Format) with about 1,000 records.
Each record contains an ID number (8) , SSN (11), Name (25), and Add Date (8).
i.e.
12345678222-22-2222John Doe 19920118
What I need to do is open the flat file and grab each record and set the different parts (ID,SSN,Name,Add Date) equal to variables (by using substr() I beleive) and post them to a MySQL table.
How in the world do I accomplish this task?