<?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 Re: Submit command in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/submit-command/m-p/3941844#M81802</link>
    <description>Hi Nicky&lt;BR /&gt;&lt;BR /&gt;I attach a commandfile for you, which solves this problem.&lt;BR /&gt;&lt;BR /&gt;Hope that helps&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;Heinz</description>
    <pubDate>Fri, 09 Feb 2007 11:35:35 GMT</pubDate>
    <dc:creator>Heinz W Genhart</dc:creator>
    <dc:date>2007-02-09T11:35:35Z</dc:date>
    <item>
      <title>Submit command</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/submit-command/m-p/3941843#M81801</link>
      <description>Folks,&lt;BR /&gt;&lt;BR /&gt;What is the command to submit a backup every 7 days from tomorrow onwards at 7am?&lt;BR /&gt;&lt;BR /&gt;I thought it was something like?&lt;BR /&gt;&lt;BR /&gt;submit/user=operator/after="tomorrow+7"/que=backup/noprinter -&lt;BR /&gt;    sys$sysdevice:[operator]hqnbck.com&lt;BR /&gt;&lt;BR /&gt;this schedules the backup every morning at 7am..</description>
      <pubDate>Fri, 09 Feb 2007 10:04:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/submit-command/m-p/3941843#M81801</guid>
      <dc:creator>Nicky Power</dc:creator>
      <dc:date>2007-02-09T10:04:19Z</dc:date>
    </item>
    <item>
      <title>Re: Submit command</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/submit-command/m-p/3941844#M81802</link>
      <description>Hi Nicky&lt;BR /&gt;&lt;BR /&gt;I attach a commandfile for you, which solves this problem.&lt;BR /&gt;&lt;BR /&gt;Hope that helps&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;Heinz</description>
      <pubDate>Fri, 09 Feb 2007 11:35:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/submit-command/m-p/3941844#M81802</guid>
      <dc:creator>Heinz W Genhart</dc:creator>
      <dc:date>2007-02-09T11:35:35Z</dc:date>
    </item>
    <item>
      <title>Re: Submit command</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/submit-command/m-p/3941845#M81803</link>
      <description>Your .com file should begin by resubmitting itself every 7 days, so something like&lt;BR /&gt;&lt;BR /&gt;$ submit/noprint 'f$env("procedure")'/user=xxx/noprin&lt;BR /&gt;/after="+7-0" /que=mybatch_queue&lt;BR /&gt;&lt;BR /&gt;and if you call this procedure weekly_backup.com, to submit it tomorrow morning, you can do now&lt;BR /&gt;&lt;BR /&gt;subm/after="tom+07:00" weekly_backup/queue=mybatch_queue ...&lt;BR /&gt;&lt;BR /&gt;"tom+07:00" means tomorrow at 7 o clock.&lt;BR /&gt;</description>
      <pubDate>Fri, 09 Feb 2007 11:37:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/submit-command/m-p/3941845#M81803</guid>
      <dc:creator>labadie_1</dc:creator>
      <dc:date>2007-02-09T11:37:17Z</dc:date>
    </item>
    <item>
      <title>Re: Submit command</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/submit-command/m-p/3941846#M81804</link>
      <description>I tend to submit daily, and handle the weekday processing with some logic in DCL.   Having the procedure resubmit itself daily means you don't have to worry about job or system restarts.  So long as there's always at most one job in the queue and the first thing it does is requeue itself for tomorrow at 7am, it (generally) does the right thing.  &lt;BR /&gt;&lt;BR /&gt;I use this daily batch job because I find I tend to have a mixture of daily maintenance and staggered BACKUPs and other such; some daily and staggered weekly stuff.  I'll have GOTO or GOSUB or CALL for some processing, based on the weekday.  Even if all the job does is re-queue itself for tomorrow and exit, it's not a load on the system.&lt;BR /&gt;&lt;BR /&gt;DECscheduler (now a CA product of some other name, IIRC) and other packages can provide this scheduling more directly, and there's a Freeware Kronos package around IIRC.  DECscheduler (now ScheduleIT?) can handle recovery and restart and error reporting, too.  Haven't looked in detail at Kronos.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 09 Feb 2007 11:54:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/submit-command/m-p/3941846#M81804</guid>
      <dc:creator>Hoff</dc:creator>
      <dc:date>2007-02-09T11:54:20Z</dc:date>
    </item>
    <item>
      <title>Re: Submit command</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/submit-command/m-p/3941847#M81805</link>
      <description>Nicky,&lt;BR /&gt;&lt;BR /&gt;I once made a procedure that calculates "the next time" to do somthing, based on a wide choice of items, such as "next sunday" "last monday of month" "3rd tuesday"  etc.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://dcl.openvms.org/stories.php?story=04/10/15/8590853" target="_blank"&gt;http://dcl.openvms.org/stories.php?story=04/10/15/8590853&lt;/A&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</description>
      <pubDate>Fri, 09 Feb 2007 13:04:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/submit-command/m-p/3941847#M81805</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2007-02-09T13:04:07Z</dc:date>
    </item>
    <item>
      <title>Re: Submit command</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/submit-command/m-p/3941848#M81806</link>
      <description>PS&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt;&amp;gt;&lt;BR /&gt;" I have assigned points to   0  of   24  responses to my questions. "&amp;lt;&amp;lt;&amp;lt;&lt;BR /&gt;please check out &lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/helptips.do?#33" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/helptips.do?#33&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 09 Feb 2007 13:06:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/submit-command/m-p/3941848#M81806</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2007-02-09T13:06:45Z</dc:date>
    </item>
    <item>
      <title>Re: Submit command</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/submit-command/m-p/3941849#M81807</link>
      <description>$ SubmitTime = F$CvTime("+8-","ABSOLUTE","DATE")+":07:00"&lt;BR /&gt;$ Submit ... /After='SubmitTime'&lt;BR /&gt;&lt;BR /&gt;Petr</description>
      <pubDate>Mon, 12 Feb 2007 04:47:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/submit-command/m-p/3941849#M81807</guid>
      <dc:creator>Petr Spisek</dc:creator>
      <dc:date>2007-02-12T04:47:01Z</dc:date>
    </item>
    <item>
      <title>Re: Submit command</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/submit-command/m-p/3941850#M81808</link>
      <description>Sorry, the pervious reply explains every 8 days resubmit.&lt;BR /&gt;Every 7 days (included in procedure):&lt;BR /&gt; $ SubmitTime = F$CvTime("+7-","ABSOLUTE","DATE")+":07:00"&lt;BR /&gt;&lt;BR /&gt;... The first submit perfotm manualy (Submit/After="tomorow+7").&lt;BR /&gt;Petr</description>
      <pubDate>Mon, 12 Feb 2007 05:04:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/submit-command/m-p/3941850#M81808</guid>
      <dc:creator>Petr Spisek</dc:creator>
      <dc:date>2007-02-12T05:04:33Z</dc:date>
    </item>
  </channel>
</rss>

