BookmarkSubscribeRSS Feed
TorOveKilnes
SAS Employee

The SAS system has a lot of options that can be useful to tweek or know the value of in many different situations. Some are even internal and not listed. Following the simple steps below you can get information about all the options, a group of options or a spesific one:

For just showing all options, internal and normal in the SAS log, you can execute the code:

  proc options internal ;

  run; quit;

 

The bad thing is that it gives a looong list. To get a list of the groups of the options:

proc options internal LISTGROUPS;

run; quit;

 

This will show how the options is grouped. If you are interested in performance options, just choose that:

 

proc options internal GROUP=PERFORMANCE;

run; quit;

 

.. and the all the options for performance is listed.

God jul 🙂

1 REPLY 1
GertNissen
Barite | Level 11

Hi all

 

One of the benefits with a community is that everyone can ask questions and/or comment on topics - In SAS there is always several ways to acheive the same goal, so here is 2 alternatives to do the same as Tor describes.

 

Finding info in sashelp.voptions (or dictonary.options)
SAS sashelp.voptions.png

More info: Accessing SAS System Information by Using DICTIONARY Tables

 

Or click through to the same information in Enterprise Guide 7.1

SAS Enterprise Guide - System options Viewer.png

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

Discussion stats
  • 1 reply
  • 892 views
  • 8 likes
  • 2 in conversation