首页 > 解决方案 > 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?

标签: amazon-web-servicesamazon-s3aws-dms

解决方案


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


推荐阅读