Tom, When I try this on the live dataset i'm only able to import the first row. The log file indicates that 'one or more rows might be getting truncated. Here is what the log file looks like: 123 data sample; 124 infile 'E:\Jeff B\Open\ClickStream\Data/centris-11252013.txt' 125 termstr=crlf lrecl=10000 dsd truncover col=cc ; 126 length x1-x7 $2000 ; 127 input x1-x4 @ ; 128 start=cc ; 129 input @' "' @; 130 end=cc-1; 131 x5 = substr(_infile_,start,end-start-2); 132 input @end x6 x7; 133 if _n_ in (3,7) then put (_n_ x1-x7) (=/); 134 run; NOTE: The infile 'E:\Jeff B\Open\ClickStream\Data/centris-11252013.txt' is: Filename=E:\Jeff B\Open\ClickStream\Data\centris-11252013.txt, RECFM=V,LRECL=10000,File Size (bytes)=9123388, Last Modified=26Nov2013:06:41:42, Create Time=26Nov2013:13:34:26 NOTE: 1 record was read from the infile 'E:\Jeff B\Open\ClickStream\Data/centris-11252013.txt'. The minimum record length was 10000. The maximum record length was 10000. One or more lines were truncated. NOTE: The data set WORK.SAMPLE has 1 observations and 9 variables. NOTE: DATA statement used (Total process time): real time 0.13 seconds cpu time 0.14 seconds any thoughts on what might be causing this? Thanks!
... View more