I\'m trying to create an external table on csv files with Aws Athena with the code below but the line TBLPROPERTIES (\"skip.header.line.count\"=\"1\")
doesn\'t
This is a feature that has not yet been implemented. See Abhishek@AWS' response here:
"We are working on it and will report back as soon as we have an outcome. Sorry for this again. This ended up taking longer than what we anticipated."
My workaround has been to preprocess the data before creating the table:
sed -e 1d -e 's/\"//g' file.csv > file-2.csv