Hi, I have a question regarding the memory usage of the DATA step. In a sample program like: DATA weight; input ID $ Week1 Week16; WeightLoss=Week1-Week16; datalines; 2477 195 163 2431 220 198 2456 173 155 2412 135 116 ; run; Where SAS stores the dataset "weight" while this step is running? Does it store it in RAM or in a temporary file in the filesystem? What if much more data is being read in this step? Thanks, Chris
... View more