To delete a batch queue in VMS: 1) If a batch queue is one of the "target execution queues" for a generic queue, it must first be removed from the "target" list. o Find any generic queues which might specify old queue as target. See COM$MGR:GETQUI_GENERIC_TARGETS.COM o Find ".com" file where queue is created and identified as a target execution queue. Likely locations are com$mgr (ops:[sysmgr]) and, on Beanie only, SYS$COMMON:[sysmgr]tftr_archive_queues.com. o Stop the generic queue. o Init the generic queue without the old batch queue in its "target" list. 2) Clear old queue of pending jobs (see vms_batch_queue_transfer.mem) 3) Delete the old queue. Example: deleting queue TFTR_TEST_ARCHIVE2 ------- $ show queue/full TFTR_ARCHIVE2 Generic batch queue TFTR_ARCHIVE2 /GENERIC=(TFTR_T_ARCHIVE2,TFTR_TEST_ARCHIVE2) /OWNER=[SYSTEM] /PROTECTION=(S:M,O:D,G:R,W:RS) $ $ stop/queue TFTR_ARCHIVE2 $ $ init/queue/batch TFTR_ARCHIVE2 /generic=(TFTR_T_ARCHIVE2)/start $ $ $ show queue/full TFTR_ARCHIVE2 Generic batch queue TFTR_ARCHIVE2 /GENERIC=(TFTR_T_ARCHIVE2) /OWNER=[SYSTEM] /PROTECTION=(S:M,O:D,G:R,W:RS) $ $ delete/queue TFTR_TEST_ARCHIVE2