Hi All,

 I have one holiday file and one daily log file.

 I have to mark particular day as holiday in daily log file , if that date is 
matching to holiday File dates

 holidayFile = load 'holidayList' as (holiday_date,holiday_description);

 dayfile = load 'log' as (log_date);

 I want to have output as

 dayFileHoliday = log_date , holidayFlag

 So sample output could be

 12-11-2012,F
 12-11-2011,T

 When my holiday file has entry for 12-11-2011 as holiday

 holiday_date,holiday_description
 12-11-2011,School_Closing_day

 Since my holidayFile is very small i was thinking to use replcated join.

 Any ideas to solve this.

Thanks in advance.

Reply via email to