SAS Institute. The Power to Know

SAS(R) Data Quality Server 9.2: Reference

Previous Page | Next Page

The DQSRVADM Procedure

Example 2: Clean Up Jobs and Logs


The following example generates a job report and then uses the contents of the report to terminate all jobs and delete all log files on the DataFlux Integration Server:

proc dqsrvadm out=work.jobReport host="myhost" port=50001;
run;

data _null_;
   set work.joblist;

   kjrc = dqsrvkilljob   (jobid, "myhost", 50001);
   dlrc = dqsrvdeletelog (jobid, "myhost", 50001);
run;

Previous Page | Next Page | Top of Page