MicroStrategy ONE

Kill Job statement

Kills a job, or all jobs for a specific user, on an Intelligence Server.

Copy
KILL (JOB job_id | [ALL] JOBS [FOR [USER] "login_name"]);

where:

  • JOB job_id is the ID of the job to be terminated, of type integer.

  • USER "login_name" is the login name of the user for whom all jobs are to be terminated, of type string.

Examples

Copy
KILL JOB 123;
Copy
KILL ALL JOBS 
 FOR "dsmith";