BookmarkSubscribeRSS Feed
deleted_user
Not applicable
how to check in base sas, which are all other sas-softwares example(SAS\STAT ,SAS/ASSIST, SAS/GRAPH) licensed with base sas. is there any command for this to check in base sas.
3 REPLIES 3
Cynthia_sas
Diamond | Level 26
Hi:
PROC SETINIT will tell you what's licensed. If you are running in a client/server environment, then you'd have to submit the proc step on every server. If you are running a single-machine install, then submitting this code shows what is licensed:
[pre]
proc setinit;
run;
[/pre]

Information is written to the SAS log -- not to the output window.
cynthia
Doc_Duke
Rhodochrosite | Level 12
One additional note. SETINIT tells you what is licensed, it does not tell you what is installed. Lex Jansen posted this solution to the usenet group comp.soft-sys.sas for determining what is actually installed:

"You might want to run the SAS Installation Qualification tool (SAS
IQ). This will tell you not only what is installed, but also validates
the installation to check for misplaced or corrupted software files.
I have been using this extensively in the past to validate client
installations.
I had it setup in such a way that this would run automatically
(through a central AUTOEXEC.SAS) when users would run SAS the first
time.
It compares MD5 checksums of files with SAS supplied checksums and
tell you exactly which components are installed.
The output is in XML (and also PDF) and can be easily processed if
needed.

See: http://support.sas.com/rnd/migration/planning/validation/sasiq.html

Lex Jansen "

There is also a program referenced in this SAS note to do it:
http://support.sas.com/kb/7/640.html

Doc Muhlbaier
Duke
Doc_Duke
Rhodochrosite | Level 12
I just reviewed this program
http://support.sas.com/kb/7/640.html
and it is only current to SAS 9.0 and EGuide 2.0, so the SAS Installation Qualification tool is the better approach.

Doc
How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1157 views
  • 0 likes
  • 3 in conversation