You need to create a file format. For example:
CREATE EXTERNAL FILE FORMAT fmtFile
WITH (
FORMAT_TYPE = DELIMITEDTEXT,
FORMAT_OPTIONS (
FIELD_TERMINATOR = ',',
STRING_DELIMITER = '"',
FIRST_ROW = 2,
USE_TYPE_DEFAULT = TRUE,
ENCODING = 'UTF8' )
);
Then on the definition of the External table you do the following:
FILE_FORMAT = fmtFile