Features: |
PROC OPTLOAD option: DATA= |
libname mysas "c:\mysas";
proc options option=yearcutoff; run;
proc optsave out=mysas.options; run;
options yearcutoff=2000;
proc options option=yearcutoff; run;
proc optload data=mysas.options; run;
proc options option=yearcutoff; run;
1 libname mysas "c:\mysas"; NOTE: Libref MYSAS was successfully assigned as follows: Engine: V9 Physical Name: c:\mysas 2 proc options option=yearcutoff; 3 run; SAS (r) Proprietary Software Release xxx TS1B0 YEARCUTOFF=1920 Cutoff year for DATE and DATETIME informats and functions NOTE: PROCEDURE OPTIONS used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 4 proc optsave out=mysas.options; 5 run; NOTE: The data set MYSAS.OPTIONS has 259 observations and 2 variables. NOTE: PROCEDURE OPTSAVE used (Total process time): real time 0.03 seconds cpu time 0.03 seconds 6 options yearcutoff=2000; 7 proc options option=yearcutoff; 8 run; SAS (r) Proprietary Software Release xxx TS1B0 YEARCUTOFF=2000 Cutoff year for DATE and DATETIME informats and functions NOTE: PROCEDURE OPTIONS used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 9 proc optload data=mysas.options; 10 run; NOTE: PROCEDURE OPTLOAD used (Total process time): real time 0.06 seconds cpu time 0.01 seconds 11 proc options option=yearcutoff; 12 run; SAS (r) Proprietary Software Release xxx TS1B0 YEARCUTOFF=1920 Cutoff year for DATE and DATETIME informats and functions NOTE: PROCEDURE OPTIONS used (Total process time): real time 0.00 seconds cpu time 0.00 seconds