Reputation: 1380
After the full load using AWS DMS, the CSV file doesn't contain the colunm names, how can I keep the column names as a part of the CSV file?
Upvotes: 5
Views: 3869
Reputation: 1380
To keep the column names you need to add an extra attribute in the target endpoint:
addColumnName=true;
https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.S3.html
Upvotes: 14