<?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: Stopping a SAS batch job completely while running in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/951582#M371965</link>
    <description>&lt;P&gt;I start it using the Task Scheduler (start at a specific time) but i have other batches that are either manual start or by rules on Outlook.&lt;/P&gt;</description>
    <pubDate>Fri, 22 Nov 2024 01:54:47 GMT</pubDate>
    <dc:creator>atesera</dc:creator>
    <dc:date>2024-11-22T01:54:47Z</dc:date>
    <item>
      <title>Stopping a SAS batch job completely while running</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/951513#M371944</link>
      <description>&lt;P&gt;Hi, my question is 'How to completely stop a SAS batch while running?' I read through the posts available on this website however, using CTRL+BRK does only stop the current SAS program within the batch. But the next SAS program after that one still continues to run. I am looking for a procedure to bring the batch to a complete stop so that SAS terminates.&lt;/P&gt;&lt;P&gt;So, let's say I have 3 SAS programs under the batch and when I start the batch the first programs runs and then when 1st completed then 2nd program starts and so on. When I stop the 2nd program running, yes, the 2nd one is killed however, then goes to the 3rd SAS program and that starts running. My goal is when I stop the batch, I don't want the rest of the programs run.&lt;/P&gt;&lt;P&gt;Any ideas, suggestions are appreciated.&lt;/P&gt;&lt;P&gt;Thanks&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Nov 2024 15:58:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/951513#M371944</guid>
      <dc:creator>atesera</dc:creator>
      <dc:date>2024-11-21T15:58:26Z</dc:date>
    </item>
    <item>
      <title>Re: Stopping a SAS batch job completely while running</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/951515#M371945</link>
      <description>&lt;P&gt;A batch job runs unattended, so there is no interface from SAS to kill it like you can with an interactive job.&amp;nbsp; But, if you have access, typically the operating system provides ways to kill an active job.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Where/how is your batch submitted job running?&amp;nbsp; Is it running locally on a Windows laptop?&amp;nbsp; Then you can use Task Manager to find the running process and kill it.&amp;nbsp; If it's running on a linux server and you can connect via a terminal, then you can use linux commands to find the process and kill it.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Nov 2024 16:36:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/951515#M371945</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2024-11-21T16:36:12Z</dc:date>
    </item>
    <item>
      <title>Re: Stopping a SAS batch job completely while running</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/951544#M371950</link>
      <description>&lt;P&gt;How do you start your batch jobs? If you run them via a scheduler, then typically schedulers have a stop job feature.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Nov 2024 18:56:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/951544#M371950</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2024-11-21T18:56:41Z</dc:date>
    </item>
    <item>
      <title>Re: Stopping a SAS batch job completely while running</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/951553#M371954</link>
      <description>&lt;P&gt;Agree that doing this via the OS (e.g., if you're using Linux, in an 'at' job) is probably the most direct.&amp;nbsp; However, if you can't do that, you could build something into the start and end of each program (for those higher than #1) that looks for some condition, and if it doesn't find it, it aborts.&amp;nbsp; &amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
%macro startstop(beginning=, lib=);

    %if &amp;amp;beginning %then %do;
        * check for presence of &amp;lt;LIB&amp;gt;.continue ;
        proc sql noprint;
        select count(*) into :continue trimmed 
        from dictionary.tables 
        WHERE libname=upcase("&amp;amp;lib") and lowcase(memname)='continue';
        quit;

        %if &amp;amp;continue=0 %then %do;
            %put ERROR: batch job terminated before running &amp;amp;sysprocessname;
            %abort cancel;
        %end;
        proc datasets lib=&amp;amp;lib memtype=data nolist nodetails;
        delete continue;
        run; quit;
    %end;
    %else %do;
           data &amp;amp;lib..continue;  x=1;  run;
    %end;
%mend; *startstop();

**&amp;nbsp;THEN,&amp;nbsp;IN YOUR PROGRAM&amp;nbsp;#1&amp;nbsp;PUT THIS AT&amp;nbsp;THE **END**&amp;nbsp;;
%startstop(beginning=0,&amp;nbsp;lib=&amp;lt;YOUR LIBREF&amp;gt;);

** and&amp;nbsp;in&amp;nbsp;PROGRAMS&amp;nbsp;#2&amp;nbsp;and&amp;nbsp;higher,&amp;nbsp;put&amp;nbsp;this&amp;nbsp;at&amp;nbsp;the&amp;nbsp;beginning:&amp;nbsp;;
%startstop(beginning=1,&amp;nbsp;lib=&amp;lt;YOUR LIBREF&amp;gt;);

**&amp;nbsp;...&amp;nbsp;and&amp;nbsp;this at&amp;nbsp;the&amp;nbsp;end&amp;nbsp;;
%startstop(beginning=0,&amp;nbsp;lib=&amp;lt;YOUR LIBREF&amp;gt;);
 &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 21 Nov 2024 21:31:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/951553#M371954</guid>
      <dc:creator>quickbluefish</dc:creator>
      <dc:date>2024-11-21T21:31:41Z</dc:date>
    </item>
    <item>
      <title>Re: Stopping a SAS batch job completely while running</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/951555#M371955</link>
      <description>...no idea why the SAS editor is squishing the last several lines after the macro into one line after I post it - pretty annoying.</description>
      <pubDate>Thu, 21 Nov 2024 19:45:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/951555#M371955</guid>
      <dc:creator>quickbluefish</dc:creator>
      <dc:date>2024-11-21T19:45:04Z</dc:date>
    </item>
    <item>
      <title>Re: Stopping a SAS batch job completely while running</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/951562#M371957</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/223320"&gt;@quickbluefish&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;...no idea why the SAS editor is squishing the last several lines after the macro into one line after I post it - pretty annoying.&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I fixed your post.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's a weird bug.&amp;nbsp; It happens if you edit the code after you have inserted it, and you don't use the code editor.&amp;nbsp; To avoid the problem, before you edit the code, click the "insert SAS code" button so that you edit it in the code editor, instead of the message editor.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;See this thread for a better explanation of the work around:&amp;nbsp;&lt;A href="https://communities.sas.com/t5/All-Things-Community/Bug-when-editing-existing-post/m-p/448947#M3084" target="_blank"&gt;https://communities.sas.com/t5/All-Things-Community/Bug-when-editing-existing-post/m-p/448947#M3084&lt;/A&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Nov 2024 21:44:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/951562#M371957</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2024-11-21T21:44:00Z</dc:date>
    </item>
    <item>
      <title>Re: Stopping a SAS batch job completely while running</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/951570#M371961</link>
      <description>&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/19879"&gt;@Quentin&lt;/a&gt; - thanks for the tip and the edit!</description>
      <pubDate>Thu, 21 Nov 2024 23:49:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/951570#M371961</guid>
      <dc:creator>quickbluefish</dc:creator>
      <dc:date>2024-11-21T23:49:35Z</dc:date>
    </item>
    <item>
      <title>Re: Stopping a SAS batch job completely while running</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/951580#M371964</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/19879"&gt;@Quentin&lt;/a&gt;&amp;nbsp;for your response. The problem is when I kill the running program within the batch that program is aborted however, the second program in the batch starts running. I want to completely stop all the programs, ones running as well as the next ones in line.&lt;/P&gt;&lt;P&gt;I submit the batch using Task Scheduler (start at a specific time) however, when I use the Task Manager same thing happens. stops the current one but the program after it kicks in.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Nov 2024 01:53:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/951580#M371964</guid>
      <dc:creator>atesera</dc:creator>
      <dc:date>2024-11-22T01:53:11Z</dc:date>
    </item>
    <item>
      <title>Re: Stopping a SAS batch job completely while running</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/951582#M371965</link>
      <description>&lt;P&gt;I start it using the Task Scheduler (start at a specific time) but i have other batches that are either manual start or by rules on Outlook.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Nov 2024 01:54:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/951582#M371965</guid>
      <dc:creator>atesera</dc:creator>
      <dc:date>2024-11-22T01:54:47Z</dc:date>
    </item>
    <item>
      <title>Re: Stopping a SAS batch job completely while running</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/951583#M371966</link>
      <description>&lt;P&gt;Thanks for your response. will this code (condition abort) stop the current one or all the rest of the programs next in line. Because what I experienced with manually stopping the batch is it stops the current SAS program running but I have several SAS programs within the same batch so when current one is stopped the second one starts running. I want to stop the whole batch or terminate the system so none of the SAS programs after that even starts.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Nov 2024 01:59:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/951583#M371966</guid>
      <dc:creator>atesera</dc:creator>
      <dc:date>2024-11-22T01:59:16Z</dc:date>
    </item>
    <item>
      <title>Re: Stopping a SAS batch job completely while running</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/951584#M371967</link>
      <description>&lt;P&gt;If you restructured your programs so that you just scheduled / ran one controlling program that used the %INCLUDE statement to run the others then this would fix your problem.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Nov 2024 02:16:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/951584#M371967</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2024-11-22T02:16:56Z</dc:date>
    </item>
    <item>
      <title>Re: Stopping a SAS batch job completely while running</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/951585#M371968</link>
      <description>this will stop the whole chain, because each subsequent program after the failure will look for the presence of the 'continue' dataset and, if not found, will stop immediately.  However, I think the post below by SASKiwi is better - I think once SAS goes into an error state (&amp;amp;SYSCC&amp;gt;=7), it will not run any subsequent %INCLUDEd programs - though I've never tested this.</description>
      <pubDate>Fri, 22 Nov 2024 02:32:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/951585#M371968</guid>
      <dc:creator>quickbluefish</dc:creator>
      <dc:date>2024-11-22T02:32:35Z</dc:date>
    </item>
    <item>
      <title>Re: Stopping a SAS batch job completely while running</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/951601#M371973</link>
      <description>So you seem to have a single shell script/batch file containing calls of multiple SAS programs.&lt;BR /&gt;It would be better to schedule each program separately, and have them run in succession depending on the successful completion of the preceding job.&lt;BR /&gt;With a combined shell script, kill the script first and then the SAS program.</description>
      <pubDate>Fri, 22 Nov 2024 08:02:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/951601#M371973</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2024-11-22T08:02:34Z</dc:date>
    </item>
    <item>
      <title>Re: Stopping a SAS batch job completely while running</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/951607#M371975</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/289641"&gt;@atesera&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/19879"&gt;@Quentin&lt;/a&gt;&amp;nbsp;for your response. The problem is when I kill the running program within the batch that program is aborted however, the second program in the batch starts running. I want to completely stop all the programs, ones running as well as the next ones in line.&lt;/P&gt;
&lt;P&gt;I submit the batch using Task Scheduler (start at a specific time) however, when I use the Task Manager same thing happens. stops the current one but the program after it kicks in.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;From how I understand you, you've got some master .bat script that calls .sas programs in sequence. If you execute the .sas programs in foreground (=not using START) then killing the master .bat process should give you the outcome you're after.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Alternatively: Add in your master .bat script some error checking so that .sas programs only run if a previous program didn't return an error condition.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Even though I believe just scheduling some master .sas program with %include statement would also work but I don't like the approach because this would execute all included programs in a single SAS session - and if prog1 changes the environment line changing an option then prog2 will also execute with this changed option.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Nov 2024 10:01:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/951607#M371975</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2024-11-22T10:01:58Z</dc:date>
    </item>
    <item>
      <title>Re: Stopping a SAS batch job completely while running</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/951614#M371980</link>
      <description>&lt;P&gt;Can you describe your current scenario?&amp;nbsp; You say:&lt;/P&gt;
&lt;P&gt;"&lt;SPAN&gt;So, let's say I have 3 SAS programs under the batch&amp;nbsp;..."&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;A SAS batch job is not a group of programs that are run in series.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From what you have shared, others have guessed that you have a .bat file (or maybe a powershell script?) which is invoking multiple SAS sessions in series.&amp;nbsp; Is that correct?&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you please share the code for that script, just so that we can be clear that we're understanding your scenario?&amp;nbsp; Or if you are using some other program to orchestrate the execution of a series of SAS programs, please provide the details on how your are doing this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you have a single Task Scheduler task which executes three SAS programs, please show the code / setup for that task.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Nov 2024 13:37:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/951614#M371980</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2024-11-22T13:37:13Z</dc:date>
    </item>
    <item>
      <title>Re: Stopping a SAS batch job completely while running</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/951620#M371983</link>
      <description>&lt;P&gt;...can confirm that this method proposed by SASkiwi works -- here's an example.&amp;nbsp; If, for instance, there's an error in PROG2, the master program (the one shown below) will terminate and no remaining programs will be run:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;OPTIONS ERRORABEND;

%put running prog1 -- ERR: &amp;amp;syscc ;
%include "/some/path/prog1.sas";

%put running prog2 -- ERR: &amp;amp;syscc ;
%include "/some/path/prog2.sas";

%put running prog3 -- ERR: &amp;amp;syscc ;
%include "/some/path/prog3.sas";

%put running prog4 -- ERR: &amp;amp;syscc ;
%include "/some/path/prog4.sas";

%put DONE -- ERR: &amp;amp;syscc;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 22 Nov 2024 14:37:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/951620#M371983</guid>
      <dc:creator>quickbluefish</dc:creator>
      <dc:date>2024-11-22T14:37:19Z</dc:date>
    </item>
    <item>
      <title>Re: Stopping a SAS batch job completely while running</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/951691#M371992</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/223320"&gt;@quickbluefish&lt;/a&gt; - What I typically ensure with %INCLUDE chained jobs is that the SAS OPTION SYNTAXCHECK is set. This is set by default for batch jobs anyway. With this option an error still results in ALL code still running, including the %INCLUDE programs, but no data is processed as OBS = 0 has been set. This means failed jobs finish quickly but still contain complete logs which in my view is ideal for troubleshooting.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Nov 2024 23:49:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/951691#M371992</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2024-11-22T23:49:57Z</dc:date>
    </item>
    <item>
      <title>Re: Stopping a SAS batch job completely while running</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/951694#M371995</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13976"&gt;@SASKiwi&lt;/a&gt;&amp;nbsp;Not sure how SAS behaves in current versions but at least in the past even with SAS in syntax check mode some code still executed (like full pass-through SQL) which can lead to issues.&lt;/P&gt;</description>
      <pubDate>Sat, 23 Nov 2024 01:53:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/951694#M371995</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2024-11-23T01:53:12Z</dc:date>
    </item>
    <item>
      <title>Re: Stopping a SAS batch job completely while running</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/951709#M372000</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/12447"&gt;@Patrick&lt;/a&gt; - I haven't seen that behaviour in the versions we use, the oldest being 9.4M2. We in fact use SQL Passthru a lot, and that is most commonly where our programs break. Following an SQL Passthru error we typically see an SQL connection CLI error, SYNTAXCHECK mode switches on and the rest of the program finishes quickly as no further data is processed.&lt;/P&gt;</description>
      <pubDate>Sat, 23 Nov 2024 22:39:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/951709#M372000</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2024-11-23T22:39:34Z</dc:date>
    </item>
    <item>
      <title>Re: Stopping a SAS batch job completely while running</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/953914#M372612</link>
      <description>&lt;P&gt;Hi, yes that's correct. One single batch containing multiple SAS programs and once the first one finishes then second one runs and goes until the last one completed.&lt;/P&gt;&lt;P&gt;That might be an option, but I guess I have to put a statement at the end of each program to tell the next program that it completed successfully.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Dec 2024 20:28:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Stopping-a-SAS-batch-job-completely-while-running/m-p/953914#M372612</guid>
      <dc:creator>atesera</dc:creator>
      <dc:date>2024-12-17T20:28:05Z</dc:date>
    </item>
  </channel>
</rss>

