Note: Usually, the OPERATE procedure
is used by a server administrator; sometimes an applications developer
has responsibilities that include server administration.
The remainder of the
steps in this section are mainly here for applications developers
and server administrators who are continuing this exercise. In the
USER2 session, submit the following from the
Program Editor
window:
proc operate server=&servername;
PROC OPERATE is an interactive procedure that is terminated by a
QUIT statement. A RUN statement is not used or needed with a PROC
OPERATE statement.
PROC OPERATE manages
the execution of a
SAS/SHARE server. You must identify which
SAS/SHARE server you want to manage, even if there is only one
server executing. If you are not on the same machine as the server,
you must specify the network node name in the SERVER= option in the
PROC OPERATE statement:
proc operate server=network_node_name.&servername;
Examine the USER2
Log window, which contains the following information:
proc operate server=&servername;
PROC OPERATE is set to default server DEMOSERV.
Usually, you should
specify the COMAMID= option before using PROC OPERATE to connect to
a server. If you know that you will use the default access method
on your operating environment, you might omit the COMAMID= option.
You do not need to specify a value for the COMAMID= option in this
step because it was already specified for this SAS session in an earlier
step.
See Locking an Observation (All New Users).