I wrote a pig script as follows and stored it in x.pig file Data = LOAD '/....' as (,,,, ) NoNullData= FILTER Data by qe is not null; STORE (foreach (group NoNullData all) generate flatten($1)) into 'exp/$inputDatePig';
evnt_dtl =LOAD 'exp/$inputDatePig/part-r-00000' AS (cust,,,,,) I executed the command as follows pig -f x.pig -param inputDatePig=03272013 And finally it says exp/03272013 tough the directory exists as it gets created in STORE command. What is wrong in this
