| Valid in: | DATA step, PROC SQL, and SCL |
/* Incorrect use of function arguments */
dmsrvDeleteLog('jobid');
/* Localhost is used for the host */ dmsrvDeleteLog('jobid', '', 21036);
/* Correct */ dmsrvDeleteLog('jobid', dmsrvhostname, 21036); /* Incorrect use of function arguments */
dmsrvDeleteLog('jobid');
/* Port 21036 or 21037 is used */ dmsrvDeleteLog('jobid', dmsrvhostname, 0);
/* Correct */ dmsrvDeleteLog('jobid', dmsrvhostname, 21036);