IOMOPERATE Procedure

Example 2: CONNECT Example Using Credentials

CONNECT Example Using Credentials

The following example demonstrates how to include a user ID and its password to connect to a SAS object spawner:
PROC IOMOPERATE;
    CONNECT host='itsvista16234'
            port=8571
            user='sasiom1'
            pass='mypassword'
            servertype=OBJECTSPAWNER;
    LIST COMMANDS;
QUIT;