Moving to Pig's user lists. Please use the right lists for your user questions.
On Thu, Mar 28, 2013 at 3:10 AM, Mix Nin <[email protected]> wrote: > 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 -- Harsh J
