I'm unable to parse date in pig.
Date format is Mon, 10/11/10 01:02 PM
I load data using the following command:
data = load 'CampaignData.csv' using PigStorage(';');
Next I generate the date column as a chararray
using the following command:-
date_data = foreach data generate (chararray) $272 as dates;
when I dump date_data
I get the following in output:
Mon
How to get the complete date?