Use proc import on a file where the import worked. Copy the data step (proc import creates one and runs it) from the log, and apply it to the current file. Study the log in case the result is not what you expected.
Once it works, you can simplify and optimize this data step. The proper way to reliably read text files into SAS is always a customized data step.
... View more