Hi, I have an ascii file I'd like to load into an access database table. How would one define the fields in the file in SQL? Example record: 1234John Wayne555.
NumberID, 1,4
Name, 5,14
PurchaseID, 19,3
Once these fields are defined, I wish to use SQL CREATE TABLE with NumberID,Name,PurchaseID fields, then load that table using the file. Please help, Thanks, Dan.
NumberID, 1,4
Name, 5,14
PurchaseID, 19,3
Once these fields are defined, I wish to use SQL CREATE TABLE with NumberID,Name,PurchaseID fields, then load that table using the file. Please help, Thanks, Dan.