The following SAS program is submitted:data new (bufsize = 6144 bufno = 4);set old;run;Which one of the following describes the difference between the usage of BUFSIZE= and BUFNO= options?
Consider the following SAS log:229 data sasuser.ranch sasuser.condo / view = sasuser.ranch;230 set sasuser.houses;231 if style = 'RANCH' then output sasuser.ranch;232 else if style = 'CONDO' then output sasuser.condo;233 run;NOTE: DATA STEP view saved on file SASUSER.RANCH.NOTE: A stored DATA STEP view cannot run under a different operating system.234235 proc print data = sasuser.condo;ERROR: File SASUSER.CONDO.DATA does not exist.236 run;NOTE: The SAS System stopped processing this step because of errors.Which one of the following explains why the PRINT procedure fails?
Which one of the following is an advantage of creating and using a SAS DATA step view?
Given the following SAS data sets ONE and TWO:ONE TWO -YEAR QTR BUDGET YEAR QTR SALES -2001 3 500 2001 4 3002001 4 400 2002 1 6002002 1 700The following SAS program is submitted:proc sql;select one.*, salesfrom one, two;quit;Which one of the following reports is generated?
Given the following SAS data set ONE:ONE -NUM VAR -1 A2 B3 CWhich one of the following SQL programs deletes the SAS data set ONE?
The following SAS program is submitted:Data sasuser.history;Set sasuser.history(keep=state x yRename = (state=ST));Total=sum(x, y);Run;The SAS data set SASUSER.HISTORY has an index on the variable STATE.Which describes the result of submitting the SAS program?