My source CSV is comma delimited.
Example
Col1, Col2, Col3
Destinatin SQL Table
Col1, Col2, Col3, Col4, Col5 ( Col4 and Col5 are like audit columns)
So when i do bcp import can these Col4 and Col5 set to some default values or should I have to massage the data / source file to include these before i execute bcp cmd.
Which is preferred way.
Use SSIS to read source / derive audit columns and map to destination.
or any other right way.