4

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?

Luan Kevin Ferreira
  • 1,184
  • 2
  • 16
  • 40

1 Answers1

10

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

Luan Kevin Ferreira
  • 1,184
  • 2
  • 16
  • 40