Unable to Create Table in HIVE reading a CSV from HDFS
Hive picks up all the files in the directory that you specify in LOCATION. You do not need to specify the file name.
This should work :
CREATE EXTERNAL TABLE testmail (memberId String , email String, sentdate String,actiontype String, actiondate String, campaignid String,campaignname String) ROW FORMAT DELIMITED FIELDS TERMINATED BY ',' LOCATION '/user/hadoop/cloudera/ameeth';