|
Step 2
|
First, follow the best practices on the main topic of the Install SAS phase. Remember to close all programs, including virus-scanning software.
Run the installations for the SAS software products you have licensed. Installation documents ship with the software, either in hardcopy or on a CD, and are always available at the Install Center.
data test;x=1;run; %put last_return_code=&sysrc;If the code is processed sucessfully, the following results are written to the log with no reported errors:
1 data test;x=1;run;
NOTE: The data set WORK.TEST has 1 observations and 1 variables.
NOTE: DATA statement used (Total process time):
real time 0.04 seconds
cpu time 0.04 seconds
2 %put return code=&sysrc;
last_return_code=0
In interactive line mode, submitting the above DATA step produces a new prompt (for example,
"2?") to indicate successful completion. Then you can submit the %PUT statement and check
the return code.
After you complete installation and initial validation, you might need to customize the configuration, as explained in the next step.
Proceed to step 4.