DMSRVPROCESSSVC Procedure

Example: Run a DataFlux Data Management Service

Features:
PROC DMSRVPROCESSSVC:
HOST=
PORT=
SERVICE=
TIMEOUT=
USERID=
PASSWORD=
This example runs a DataFlux Data Management service on a DataFlux Data Management Server that is installed on the default port, Port 21036, of the ‘myserver’ server. In the example, the service is specified and, with the time-out value of 360, the job will terminate after 360 seconds if it does not complete within that time. The job is executed under the credentials (user ID and password) that are specified in the procedure. The SERVICE was previously created and uploaded to the DataFlux Data Management Server.
PROC DMSRVPROCESSSVC
   HOST='myserver'
   PORT=21036
   SERVICE='concatenate.djf'
   TIMEOUT=360
   USERID='myname'
   PASSWORD='mypassword'
RUN;