This is what works in Redshift:
You want to use table properties ('skip.header.line.count'='1') Along with other properties, if you want, for example. 'numRows'='100' . Here's a sample:
create external table exreddb1.test_table (ID BIGINT ,NAME VARCHAR ) row format delimited fields terminated by ',' stored as textfile location 's3://mybucket/myfolder/' table properties ('numRows'='100', 'skip.header.line.count'='1');
source share