Hi Olu,
there are lots of ways to do this - Office Inside is one, but might be overkill for a CSV file.
a) Declare a table in your dictionary - use Basic driver, and then just loop through this table (perhaps in a process procedure) adding the records to your other table?
b) Use stringTheory =
loadFile
split on CRLF
for each line
split again on , (using a second st object)
copy fields into your record and save new record
Personally I'd use b) - especially if this was a one-time import (because then no dict structure required).
cheers
Bruce