If DotQDotpar working at Solaris?

Hi all

If I run the following code at Solaris:

  writepath:.Q.par[dbdir;date;`trade];

  out"Writing “,(string count towrite),” rows to ",string writepath;

   

It doesn’t show “dbdir/2014.10.04/trade” , but it show “dbdir.2014.10.04.trade”, is there bug of DotQDotpar for Solaris?

Thanks,

maybe you are missing the : in the path name?

q).Q.par[.;2001.01.01;trade]

`..2001.01.01.trade

q).Q.par[:.;2001.01.01;trade]

`:./2001.01.01/trade

I see… thanks a lot, missed this detail