Hi @Ozer,
This error occurred because there is no need of specify the file name in the location, hive automatically take all the files in the directory that you specify in location. I hope your command without the file name will work.
hive> CREATE EXTERNAL TABLE IF NOT EXISTS edureka_762118.NYSE_daily 
> (exchange_name STRING, 
> stock_symbol STRING, 
> stock_date DATE, 
> stock_price_open FLOAT, 
> stock_price_high FLOAT, 
> stock_price_low FLOAT, 
> stock_price_close FLOAT, 
> stock_volume FLOAT, 
> stock_price_adj_close FLOAT 
> ) 
> ROW FORMAT DELIMITED 
> FIELDS TERMINATED BY ',' 
 > LINES TERMINATED BY '\n' 
 > STORED AS TEXTFILE 
> LOCATION '/user/edureka_762118