SAS Display Manager: Viewtable commands

871 views Asked by At

SAS DM offers some handy tools for viewing data accessible via the command console. For example "vt library.table" will display the table you would like to view in table viewer. or " 'columns' colname" will only display the variable COLNAME. However this function does not seem to be able to take more than 1 argument. For example " 'columns' a b" will not display columns A and B. My questions are:

Does anyone know how to include multiple variables into this statement?

Also, is there a way to use something equivalent to a LIKE operator in this command prompt, or maybe even use a regular expression? For example, find all variable beginning with "XYZ".

Lastly, is there a DM command to view table properties?

If anyone knows the answers to these questions, your help would be much appreciated as there seems to be very little information about SAS DM out there.

Many thanks!

1

There are 1 answers

1
user667489 On BEST ANSWER

Not sure about a like operator or the properties tab, but to show multiple variables you can do:

dm "vt sashelp.class; columns ""sex age""";

You can bring up the vars tab like so, and then click on the properties tab:

dm "vars sashelp.class";

You might find this page helpful: SAS Display Manager commands