<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Batch queue in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/batch-queue/m-p/3985524#M83503</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;plz tell me how to create a batch queue in OVMS?&lt;BR /&gt;&lt;BR /&gt;The Queue manager is already running.&lt;BR /&gt;$ SHOW QUE/MANA/FULL&lt;BR /&gt;Master file:  SYS$SYSROOT:[SYSEXE]QMAN$MASTER.DAT;&lt;BR /&gt;&lt;BR /&gt;Queue manager SYS$QUEUE_MANAGER, running, on ABACUS::&lt;BR /&gt;  /ON=(*)&lt;BR /&gt;  Database location:  SYS$COMMON:[SYSEXE]&lt;BR /&gt;&lt;BR /&gt;But im not sure how to create the batch queue.&lt;BR /&gt;i got the this error while submitting the batch queue.&lt;BR /&gt;-----------------------------------&lt;BR /&gt;$ submit/notify 1213640757_fetch.txt&lt;BR /&gt;%SUBMIT-F-CREJOB, error creating job&lt;BR /&gt;-JBC-E-NOSUCHQUE, no such queue&lt;BR /&gt;----------------------------------&lt;BR /&gt;&lt;BR /&gt;bye&lt;BR /&gt;Ramesh</description>
    <pubDate>Fri, 20 Apr 2007 05:42:55 GMT</pubDate>
    <dc:creator>how to create batich qu</dc:creator>
    <dc:date>2007-04-20T05:42:55Z</dc:date>
    <item>
      <title>Batch queue</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/batch-queue/m-p/3985524#M83503</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;plz tell me how to create a batch queue in OVMS?&lt;BR /&gt;&lt;BR /&gt;The Queue manager is already running.&lt;BR /&gt;$ SHOW QUE/MANA/FULL&lt;BR /&gt;Master file:  SYS$SYSROOT:[SYSEXE]QMAN$MASTER.DAT;&lt;BR /&gt;&lt;BR /&gt;Queue manager SYS$QUEUE_MANAGER, running, on ABACUS::&lt;BR /&gt;  /ON=(*)&lt;BR /&gt;  Database location:  SYS$COMMON:[SYSEXE]&lt;BR /&gt;&lt;BR /&gt;But im not sure how to create the batch queue.&lt;BR /&gt;i got the this error while submitting the batch queue.&lt;BR /&gt;-----------------------------------&lt;BR /&gt;$ submit/notify 1213640757_fetch.txt&lt;BR /&gt;%SUBMIT-F-CREJOB, error creating job&lt;BR /&gt;-JBC-E-NOSUCHQUE, no such queue&lt;BR /&gt;----------------------------------&lt;BR /&gt;&lt;BR /&gt;bye&lt;BR /&gt;Ramesh</description>
      <pubDate>Fri, 20 Apr 2007 05:42:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/batch-queue/m-p/3985524#M83503</guid>
      <dc:creator>how to create batich qu</dc:creator>
      <dc:date>2007-04-20T05:42:55Z</dc:date>
    </item>
    <item>
      <title>Re: Batch queue</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/batch-queue/m-p/3985525#M83504</link>
      <description>If no queue is specified in a SUBMIT command, the logical SYS$BATCH is translated and used as the destination queue.&lt;BR /&gt;If there is no such logical, the queue SYS$BATCH is used, if one exists.&lt;BR /&gt;&lt;BR /&gt;So in Your case first do a SHOW LOG SYS$BATCH .&lt;BR /&gt;If not existing, do a SHOW QUEUE * to see if the system has queues at all.&lt;BR /&gt;&lt;BR /&gt;If none at all, then if You are a system manager, use INIT/QUEUE/BATCH to create a queue, else ask the sysmgr which queues are accessible and why there is no SYS$BATCH queue or logical.&lt;BR /&gt;&lt;BR /&gt;There was a discussion last year in ITRC about the pros and cons of having a common sys$batch, or an individual node_batch queue defined by logical sys$batch, or a generic sys$batch.&lt;BR /&gt;It depends on the cluster-structure/uniformity what should be preferred.&lt;BR /&gt;&lt;BR /&gt;For a standalone system, there I would prefer an execution queue defined by&lt;BR /&gt;  INIT/QUEUE/BATCH SYS$BATCH</description>
      <pubDate>Fri, 20 Apr 2007 06:08:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/batch-queue/m-p/3985525#M83504</guid>
      <dc:creator>Joseph Huber_1</dc:creator>
      <dc:date>2007-04-20T06:08:20Z</dc:date>
    </item>
    <item>
      <title>Re: Batch queue</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/batch-queue/m-p/3985526#M83505</link>
      <description>Text files (.TXT, by default) are not usually submitted to batch queues.&lt;BR /&gt;&lt;BR /&gt;DCL command procedures (.COM, by default) are.&lt;BR /&gt;&lt;BR /&gt;The baseline batch queue creation command is: &lt;BR /&gt;&lt;BR /&gt;INITIALIZE /QUEUE /BATCH /START [queue-name]&lt;BR /&gt;&lt;BR /&gt;Privileges are required.  Usually OPER.&lt;BR /&gt;&lt;BR /&gt;The default batch queue name is SYS%BATCH, though sites will regularly not have that queue and will redirect access to other queues by defining a SYS$BATCH logical name.&lt;BR /&gt;&lt;BR /&gt;There will probably be other qualifiers needed.&lt;BR /&gt;&lt;BR /&gt;The time taken to skim the System Managers' Manual: Essentials book in the OpenVMS documentation set and (for information on creating DCL command procedures) the OpenVMS User's Guide will also save you time and effort.&lt;BR /&gt;&lt;BR /&gt;And if that command does not permit you to submit to the queue, issue SHOW SYMBOL SUBMIT and SHOW LOGICAL SYS$BATCH, and post the output here.&lt;BR /&gt;&lt;BR /&gt;Stephen Hoffman&lt;BR /&gt;HoffmanLabs LLC&lt;BR /&gt;</description>
      <pubDate>Fri, 20 Apr 2007 06:09:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/batch-queue/m-p/3985526#M83505</guid>
      <dc:creator>Hoff</dc:creator>
      <dc:date>2007-04-20T06:09:51Z</dc:date>
    </item>
    <item>
      <title>Re: Batch queue</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/batch-queue/m-p/3985527#M83506</link>
      <description>Ramesh,&lt;BR /&gt;&lt;BR /&gt;Welcome to the OpenVMS forum.&lt;BR /&gt;&lt;BR /&gt;Please consider picking a more reasonable forum name and sticking to just that one.&lt;BR /&gt;&lt;BR /&gt;When you give a $SUBMIT command it targets the batch queue SYS$BATCH.&lt;BR /&gt;&lt;BR /&gt;You can create that with $INIT /QUEUE&lt;BR /&gt;&lt;BR /&gt;Please use $HELP QUEUE for an quick overview of all queue related command and then drill down further with help for the details: $HELP INIT /QUEUE &lt;BR /&gt;&lt;BR /&gt;Hope this helps some,&lt;BR /&gt;Hein van den Heuvel (at gmail dot com)&lt;BR /&gt;HvdH Performance Consulting&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 20 Apr 2007 06:11:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/batch-queue/m-p/3985527#M83506</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2007-04-20T06:11:49Z</dc:date>
    </item>
    <item>
      <title>Re: Batch queue</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/batch-queue/m-p/3985528#M83507</link>
      <description>Ramesh,&lt;BR /&gt;&lt;BR /&gt;to begin with:&lt;BR /&gt;&lt;BR /&gt;Welcome to the VMS forum.&lt;BR /&gt;&lt;BR /&gt;Second, you had better enter "my Profile", choose EDIT, and replace "how to create batich queue in OVMS " into Ramesh (or whatever you like to be named here)&lt;BR /&gt;&lt;BR /&gt;As for your question.&lt;BR /&gt;&lt;BR /&gt;First try&lt;BR /&gt;$ show queue /batch&lt;BR /&gt;to find out if any batch queues are available  (obviously, the default SYS$BATCH is not)&lt;BR /&gt;&lt;BR /&gt;As with any VMS problem&lt;BR /&gt;$ HELP is your best friend.&lt;BR /&gt;try&lt;BR /&gt;$ HELP INIT /QUIEU&lt;BR /&gt;and then look through the documenteation for creating (print &amp;amp; ) batch queues.&lt;BR /&gt;&lt;BR /&gt;The simplest command that satisfies your wishes would be&lt;BR /&gt;$ init queue/batch sys$batch&lt;BR /&gt;but the HELP gives all kind of info to make the queue more to your specific needs.&lt;BR /&gt;&lt;BR /&gt;btw, if $ SHOW QUEU /BATCH  _does_ displat other batch(es) running, than you may well only have to modify your SUBMIT command with /QUE=&lt;ANY running="" queue=""&gt;&lt;BR /&gt;&lt;BR /&gt;hth&lt;BR /&gt;&lt;BR /&gt;Proost.&lt;BR /&gt;&lt;BR /&gt;Have one on me.&lt;BR /&gt;&lt;BR /&gt;jpe&lt;BR /&gt;&lt;BR /&gt;&lt;/ANY&gt;</description>
      <pubDate>Fri, 20 Apr 2007 06:16:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/batch-queue/m-p/3985528#M83507</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2007-04-20T06:16:01Z</dc:date>
    </item>
    <item>
      <title>Re: Batch queue</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/batch-queue/m-p/3985529#M83508</link>
      <description>Ramesh,&lt;BR /&gt;&lt;BR /&gt;The START/QUEUE command restarts a queue that has been stopped or paused. &lt;BR /&gt;You must create the queue with the INITIALIZE/QUEUE command before you can use the START/QUEUE command.&lt;BR /&gt;To create and start the queue at the same time, use the INITIALIZE/QUEUE/START command. &lt;BR /&gt;&lt;BR /&gt;Do go through this docs...&lt;BR /&gt;&lt;A href="http://h71000.www7.hp.com/doc/73final/6017/6017pro_054.html#bottom_054" target="_blank"&gt;http://h71000.www7.hp.com/doc/73final/6017/6017pro_054.html#bottom_054&lt;/A&gt;&lt;BR /&gt;and&lt;BR /&gt;&lt;A href="http://h71000.www7.hp.com/DOC/731FINAL/4477/4477pro_012.html" target="_blank"&gt;http://h71000.www7.hp.com/DOC/731FINAL/4477/4477pro_012.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Archunan&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 20 Apr 2007 19:08:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/batch-queue/m-p/3985529#M83508</guid>
      <dc:creator>Arch_Muthiah</dc:creator>
      <dc:date>2007-04-20T19:08:51Z</dc:date>
    </item>
    <item>
      <title>Re: Batch queue</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/batch-queue/m-p/3985530#M83509</link>
      <description>Oops! Ramesh you need to add /BATCH qualifier for batch queue(execution que), and add /generic for generic queue.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Archunan</description>
      <pubDate>Fri, 20 Apr 2007 19:36:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/batch-queue/m-p/3985530#M83509</guid>
      <dc:creator>Arch_Muthiah</dc:creator>
      <dc:date>2007-04-20T19:36:23Z</dc:date>
    </item>
    <item>
      <title>Re: Batch queue</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/batch-queue/m-p/3985531#M83510</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Thanks for ur updae...and i hav one more &lt;BR /&gt;problem also...&lt;BR /&gt;&lt;BR /&gt;I hav created the batch queue's are&lt;BR /&gt;&lt;BR /&gt;$ show queue/batch&lt;BR /&gt;&lt;BR /&gt;Batch queue QUEUE, idle, on ABACUS::&lt;BR /&gt;Batch queue SYS$BATCH, idle, on ABACUS::&lt;BR /&gt;&lt;BR /&gt;if i give this submit job command..&lt;BR /&gt;$ submit/notify 1213640757_fetch.txt&lt;BR /&gt;&lt;BR /&gt;Its submitted in the SYS$BATCH queue.&lt;BR /&gt;But i need to submit in the another queue called QUEUE.&lt;BR /&gt;Please tell me how to submit it into another queue.&lt;BR /&gt;&lt;BR /&gt;After submit the job ..,&lt;BR /&gt;&lt;BR /&gt;$ show queue/batch&lt;BR /&gt;Batch queue QUEUE, idle, on ABACUS::&lt;BR /&gt;&lt;BR /&gt;Batch queue SYS$BATCH, busy, on ABACUS::&lt;BR /&gt;&lt;BR /&gt;  Entry  Jobname         Username             Status&lt;BR /&gt;  -----  -------         --------             ------&lt;BR /&gt;     17  1213640757_FETCH&lt;BR /&gt;                         SYSTEM               Executing&lt;BR /&gt;&lt;BR /&gt;after this job i got this status like &lt;BR /&gt;&lt;BR /&gt;Job 1213640757_FETCH (queue SYS$BATCH, entry 17) terminated with error status&lt;BR /&gt;&lt;BR /&gt;So please tell me how can i see this error details and where i can see??&lt;BR /&gt;&lt;BR /&gt;and also tell me how can i submit this job into another Queue called 'QUEUE'.&lt;BR /&gt;&lt;BR /&gt;bye&lt;BR /&gt;Ramesh</description>
      <pubDate>Wed, 02 May 2007 00:17:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/batch-queue/m-p/3985531#M83510</guid>
      <dc:creator>how to create batich qu</dc:creator>
      <dc:date>2007-05-02T00:17:15Z</dc:date>
    </item>
    <item>
      <title>Re: Batch queue</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/batch-queue/m-p/3985532#M83511</link>
      <description>&amp;gt;&amp;gt;&amp;gt;So please tell me how can i see this error details and where i can see??&lt;BR /&gt;&lt;BR /&gt;In your command file (your 1213640757_FETCH.TXT) put &lt;BR /&gt;&lt;BR /&gt;$ set verify&lt;BR /&gt;&lt;BR /&gt;at the beginning&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt;&amp;gt;and also tell me how can i submit this job into another Queue called 'QUEUE'.&lt;BR /&gt;&lt;BR /&gt;$ submit/queue=queue/log=sys$scratch/notify 1213640757_fetch.txt&lt;BR /&gt;&lt;BR /&gt;After the batch job completes,&lt;BR /&gt;&lt;BR /&gt;$ type/page sys$login:1213640757_fetch.log&lt;BR /&gt;</description>
      <pubDate>Wed, 02 May 2007 00:41:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/batch-queue/m-p/3985532#M83511</guid>
      <dc:creator>Jon Pinkley</dc:creator>
      <dc:date>2007-05-02T00:41:42Z</dc:date>
    </item>
    <item>
      <title>Re: Batch queue</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/batch-queue/m-p/3985533#M83512</link>
      <description>Also see &lt;BR /&gt;&lt;BR /&gt;$ help hints batch_and_print_jobs&lt;BR /&gt;&lt;BR /&gt;and &lt;BR /&gt;&lt;BR /&gt;$ help submit&lt;BR /&gt;&lt;BR /&gt;And for better tutorial, download the VMS User's Manual in pdf form.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://h71000.www7.hp.com/doc/731FINAL/DOCUMENTATION/PDF/OVMS_731_USERS.PDF" target="_blank"&gt;http://h71000.www7.hp.com/doc/731FINAL/DOCUMENTATION/PDF/OVMS_731_USERS.PDF&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;and read and try things out on your system.</description>
      <pubDate>Wed, 02 May 2007 00:48:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/batch-queue/m-p/3985533#M83512</guid>
      <dc:creator>Jon Pinkley</dc:creator>
      <dc:date>2007-05-02T00:48:52Z</dc:date>
    </item>
    <item>
      <title>Re: Batch queue</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/batch-queue/m-p/3985534#M83513</link>
      <description>Ramesh,&lt;BR /&gt;&lt;BR /&gt;I see I suggested /log=sys$scratch and then type/page sys$login&lt;BR /&gt;&lt;BR /&gt;That may work, but you should use the same logical for both.&lt;BR /&gt;&lt;BR /&gt;A set of consistent commands:&lt;BR /&gt;&lt;BR /&gt;$ submit/queue=queue/log=sys$scratch/noprint/notify 1213640757_fetch.txt&lt;BR /&gt;&lt;BR /&gt;and to view log&lt;BR /&gt;&lt;BR /&gt;$ type/page sys$scratch:1213640757_fetch.log&lt;BR /&gt;&lt;BR /&gt;If you do not specify either /noprint or /keep the log file will be deleted after it is printed on sys$print&lt;BR /&gt;&lt;BR /&gt;All this is explained better in the VMS User's Manual&lt;BR /&gt;&lt;BR /&gt;Have fun,&lt;BR /&gt;&lt;BR /&gt;Jon</description>
      <pubDate>Wed, 02 May 2007 00:57:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/batch-queue/m-p/3985534#M83513</guid>
      <dc:creator>Jon Pinkley</dc:creator>
      <dc:date>2007-05-02T00:57:42Z</dc:date>
    </item>
  </channel>
</rss>

