SAS Programming

DATA Step, Macro, Functions and more
BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
qoit
Pyrite | Level 9

Hi SAS Community, Recently I came across a brilliant article regrading how to list your SAS Sessions using PROC IOMOPERATE, link below: https://blogs.sas.com/content/sasdummy/2016/02/15/using-proc-iomoperate/

 

%let connection= 'iom://myserver.company.com:8581;bridge;user=sasadm@saspw,pass=Secret01';  

 

/* Get a list of processes */ proc iomoperate uri=&connection.;

list spawned out=spawned;

quit;

 

I do happen to know the password for the "sasadm@saspw" account but how do I find the "Object Spawner" / "Workspace Server" host name and port?

 

I tried it with our SASMETA account, but got the below error:

 

ERROR: Not connected to an IOM Server that supports the LIST SPAWNED SERVERS command.

 

Any help will be appreciated!

1 ACCEPTED SOLUTION

Accepted Solutions
qoit
Pyrite | Level 9

Thanks @SASKiwi , I don't have access to the Management Console but below statement did the job.

 

LIST DEFINED SERVERS OUT=TEST;

View solution in original post

2 REPLIES 2
SASKiwi
PROC Star

One way is to check the server definitions in SAS Management Console. 

qoit
Pyrite | Level 9

Thanks @SASKiwi , I don't have access to the Management Console but below statement did the job.

 

LIST DEFINED SERVERS OUT=TEST;

sas-innovate-wordmark-2025-midnight.png

Register Today!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.


Register now!

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
  • 2 replies
  • 1120 views
  • 0 likes
  • 2 in conversation