I used the following line of codes to import a large CSV files ( > 10 million of rows):
proc import datafile = "\path\file.csv" dmbs=csv out=file replace; run;
In the log I received:
Note: "Invalid data for ID in line 10158465 1-24. ID =. TYPE = .
Error: "Import unsuccessful."
The first 13,402,830 rows were imported successfully. Based on the log, my understanding is the next few rows in the file are empty. Since the file is too large to open in Notepad or Excel, I can't verify if there are additional data beyond the empty rows.
How can I ensure that all rows, including any empty rows or rows that may follow, are imported properly?