Delete the entire job array. Running subjobs will be killed, queueing subjobs will be deleted.
```console
$qdel 12345[].dm2
```
Deleting large job arrays may take a while.
Display status information for all user's jobs, job arrays, and subjobs.
```console
$qstat -u$USER-t
. . . . . . . . . . .
2499924_900 qcpu myarray user PENDING 0:00 02:00:00 1 (Resources)
```
Display status information for all user's subjobs.
Delete the entire job array. Running tasks will be killed, queueing tasks will be deleted.
```console
$qstat -u$USER-tJ
$scancel 2499924
```
For more information on job arrays, see the [PBSPro Users guide][1].
## Examples
Download the examples in [capacity.zip][2], illustrating the above listed ways to run a huge number of jobs. We recommend trying out the examples before using this for running production jobs.
Unzip the archive in an empty directory on cluster and follow the instructions in the README file-
```console
$unzip capacity.zip
$cat README
```
For more information on job arrays, see the [SLURM guide][1].