In SAS programming - if you use proc print step it will print all rows from table and may get hung if table is huge. So, at this situation you may just want to print some rows from big table. To do this you can try two thing:
- Print first 100 rows from table:
PROC PRINT DATA=Sashelp.Cars(OBS = 100);
RUN;
- Print rows from 100 - 200:
PROC PRINT DATA=Sashelp.Cars(FIRSTOBS = 100 obs = 200);
RUN;
No comments:
Post a Comment