DMSRVDATASVC Procedure

Example 2: Run a DataFlux Data Management Studio Service

Features:
PROC DMSRVDATASVC:
SERVICE=
DATA=
OUT=
This example runs a DataFlux Data Management Studio service on a DataFlux Data Management Server that is installed on the local host. The PORT= option is not set, so the server communicates over the default port 21036. The DATA= option specifies the input data set. The OUT= option specifies the output data sets. The SERVICE was previously created and uploaded to the DataFlux Data Management Server.
PROC DMSRVDATASVC
   SERVICE='myService'
   DATA=work.insrv
   OUT=work.outsrv;
RUN;