Luan Kevin Ferreira
Luan Kevin Ferreira

Reputation: 1380

How to keep column names using AWS DMS with S3 as a target?

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

Answers (1)

Luan Kevin Ferreira
Luan Kevin Ferreira

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

Related Questions