<?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>TomKari Tracker</title>
    <link>https://communities.sas.com/kntur85557/tracker</link>
    <description>TomKari Tracker</description>
    <pubDate>Tue, 23 Jun 2026 02:48:02 GMT</pubDate>
    <dc:date>2026-06-23T02:48:02Z</dc:date>
    <item>
      <title>Re: Possible bug in proc sgpie</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Possible-bug-in-proc-sgpie/m-p/989317#M25941</link>
      <description>&lt;P&gt;Yes, I think that's the only solution. I asked for a clarification from Tech Support, it'll be interesting to see what they say.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jun 2026 17:33:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Possible-bug-in-proc-sgpie/m-p/989317#M25941</guid>
      <dc:creator>TomKari</dc:creator>
      <dc:date>2026-06-05T17:33:03Z</dc:date>
    </item>
    <item>
      <title>Re: Possible bug in proc sgpie</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Possible-bug-in-proc-sgpie/m-p/989286#M25935</link>
      <description>&lt;P&gt;When I run it I'm still only getting one slice for v=5, size 1,000, and one slice for v=20, size 1. If I dial the count for v=5 back to 50, all of the slices show up. I want them to appear when v=1,000.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data pie1;
	do i=1 to 50;
		v=5;
		output;
	end;
	v=10;
	output;
	v=15;
	output;
	v=20;
	output;
run;

ods listing gpath='/home/xxx/AHAGM/images';
ods graphics / imagename="pie1" imagefmt=png;
title "pie1";

proc sgpie data=pie1;
	pie v / otherpercent=0;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sas2.jpg" style="width: 809px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/115688iF9432DA6BEF96754/image-size/large?v=v2&amp;amp;px=999" role="button" title="sas2.jpg" alt="sas2.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jun 2026 21:49:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Possible-bug-in-proc-sgpie/m-p/989286#M25935</guid>
      <dc:creator>TomKari</dc:creator>
      <dc:date>2026-06-04T21:49:43Z</dc:date>
    </item>
    <item>
      <title>Re: Possible bug in proc sgpie</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Possible-bug-in-proc-sgpie/m-p/989187#M25931</link>
      <description>&lt;P&gt;No, what I'm trying to get is a slice for every value of v...so it should be count 1000 for 5, and count 1 for 10, 15, and 20. Instead, I'm only getting a count of 1 for 20.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jun 2026 00:07:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Possible-bug-in-proc-sgpie/m-p/989187#M25931</guid>
      <dc:creator>TomKari</dc:creator>
      <dc:date>2026-06-04T00:07:29Z</dc:date>
    </item>
    <item>
      <title>Possible bug in proc sgpie</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Possible-bug-in-proc-sgpie/m-p/989174#M25929</link>
      <description>&lt;P&gt;Hi. When I run the following code...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data pie1;
	do i=1 to 1000;
		v=5;
		output;
	end;
	v=10;
	output;
	v=15;
	output;
	v=20;
	output;
run;

ods listing gpath='/home/xxx/AHAGM/images';
ods graphics / imagename="pie1" imagefmt=png;
title "pie1";

proc sgpie data=pie1;
	pie v / otherpercent=0;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I get this result. My understanding is that using "otherpercent=0" should cause all slices to appear and be labelled.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sas1.jpg" style="width: 818px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/115628i8D41322297E83B48/image-size/large?v=v2&amp;amp;px=999" role="button" title="sas1.jpg" alt="sas1.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jun 2026 16:48:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Possible-bug-in-proc-sgpie/m-p/989174#M25929</guid>
      <dc:creator>TomKari</dc:creator>
      <dc:date>2026-06-03T16:48:23Z</dc:date>
    </item>
    <item>
      <title>Re: Using variable values in proc tabulate titles and headings</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Using-variable-values-in-proc-tabulate-titles-and-headings/m-p/970633#M84023</link>
      <description>&lt;P&gt;Thank you all! It was the "#byval1" feature that I was fishing for. I knew it existed, but I've never used it and I simply couldn't put together a search string that found it. All the other great code that you guys have provided is a bonus!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Tom&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jul 2025 23:37:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Using-variable-values-in-proc-tabulate-titles-and-headings/m-p/970633#M84023</guid>
      <dc:creator>TomKari</dc:creator>
      <dc:date>2025-07-11T23:37:43Z</dc:date>
    </item>
    <item>
      <title>Using variable values in proc tabulate titles and headings</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Using-variable-values-in-proc-tabulate-titles-and-headings/m-p/970574#M84017</link>
      <description>&lt;P&gt;Hi, all&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a fairly simple proc tabulate. Here's some code that emulates it (note the first data step is just to massage the data to somewhat closer to mine).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data pricedata;
	set sashelp.pricedata;

	if year(date)=1998;
	keep date productline productname sale price;
run;

title1 table of price data;

proc tabulate data=pricedata;
	class date productline productname;
	var sale price;
	table date, productname, productline * (sale*sum price*sum);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;It results in a table looks like this, with one page per month:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SASCom.jpg" style="width: 783px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/108293i8ACA3B7EDF859FF5/image-size/large?v=v2&amp;amp;px=999" role="button" title="SASCom.jpg" alt="SASCom.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I would like to use the value of date in some of the headings. On the page title, instead of "table of price data" I would like to see "table of price data for jan98" on the first page, feb98 on the second, etc. Again, instead of "Name of product line" and "Product Name", I would like to see&amp;nbsp;"Name of product line for jan98" and "Product Name for jan98"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;All assistance much appreciated!&lt;BR /&gt;&amp;nbsp; &amp;nbsp;Tom&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2025 22:22:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Using-variable-values-in-proc-tabulate-titles-and-headings/m-p/970574#M84017</guid>
      <dc:creator>TomKari</dc:creator>
      <dc:date>2025-07-10T22:22:23Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get a deplyment up and running.</title>
      <link>https://communities.sas.com/t5/SAS-Viya-Pay-As-You-Go/How-to-get-support-for-SAS-Viya-on-the-Microsoft-Azure/m-p/958245#M389</link>
      <description>&lt;P&gt;I tried following these instructions, and received the message shown in the text box. Not sure what to do next, please advise.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;Tom&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="msg.png" style="width: 467px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/104331iB0F0AA4E11400AFE/image-size/large?v=v2&amp;amp;px=999" role="button" title="msg.png" alt="msg.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Feb 2025 17:47:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Viya-Pay-As-You-Go/How-to-get-support-for-SAS-Viya-on-the-Microsoft-Azure/m-p/958245#M389</guid>
      <dc:creator>TomKari</dc:creator>
      <dc:date>2025-02-04T17:47:56Z</dc:date>
    </item>
    <item>
      <title>Re: BASUG virtual webinar by Art Carpenter</title>
      <link>https://communities.sas.com/t5/Upcoming-Events/BASUG-virtual-webinar-by-Art-Carpenter/ec-p/915930#M575</link>
      <description>&lt;P&gt;I can't recommend this talk highly enough! Listening to Art wander through the decades is pure gold!!&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2024 20:49:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Upcoming-Events/BASUG-virtual-webinar-by-Art-Carpenter/ec-p/915930#M575</guid>
      <dc:creator>TomKari</dc:creator>
      <dc:date>2024-02-13T20:49:09Z</dc:date>
    </item>
    <item>
      <title>Re: Background Submit in SAS On Demand for Academics</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Background-Submit-in-SAS-On-Demand-for-Academics/m-p/910909#M1610</link>
      <description>&lt;P&gt;I queried SAS Tech Support and they confirmed that indeed, background submission is not available in SAS On Demand.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jan 2024 19:52:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Background-Submit-in-SAS-On-Demand-for-Academics/m-p/910909#M1610</guid>
      <dc:creator>TomKari</dc:creator>
      <dc:date>2024-01-08T19:52:28Z</dc:date>
    </item>
    <item>
      <title>Background Submit in SAS On Demand for Academics</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Background-Submit-in-SAS-On-Demand-for-Academics/m-p/910709#M1606</link>
      <description>&lt;P&gt;I am trying the following in SAS On Demand for Academics&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;"You can run one or more saved SAS programs in the background and continue to use SAS Studio while the background jobs execute. To run a program as a background job, right-click the program in the Server Files and Folders section of the navigation pane, and then select Background Submit from the pop-up menu."&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But when I right-click my program, I only see the following:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sas 428.png" style="width: 390px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/92336i960F1B7E31F77083/image-size/large?v=v2&amp;amp;px=999" role="button" title="sas 428.png" alt="sas 428.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;How can I run a program in background?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Tom&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jan 2024 21:29:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Background-Submit-in-SAS-On-Demand-for-Academics/m-p/910709#M1606</guid>
      <dc:creator>TomKari</dc:creator>
      <dc:date>2024-01-05T21:29:01Z</dc:date>
    </item>
    <item>
      <title>Re: Loop macro 100 times</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Loop-macro-100-times/m-p/894125#M43682</link>
      <description>&lt;P&gt;Just to include my $.02 worth, i) I think it's great that Reeza is showing an alternate way of doing it, but ii) I absolutely agree with Paige that less-experienced developers should always use a PROC, if possible.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Tom&lt;/P&gt;</description>
      <pubDate>Wed, 13 Sep 2023 17:38:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Loop-macro-100-times/m-p/894125#M43682</guid>
      <dc:creator>TomKari</dc:creator>
      <dc:date>2023-09-13T17:38:01Z</dc:date>
    </item>
    <item>
      <title>Re: Condition on Inner Join and the rest.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Condition-on-Inner-Join-and-the-rest/m-p/876153#M42976</link>
      <description>&lt;P&gt;SQL can be a little weird, especially when you're using something like EG, which tries to give you a user-friendly interface. It might be easier for you to do some experimenting, and see what happens. I suggest you try these as t1 and t2, and see what happens. Feel free to post questions. It'll give everybody a basis for discussion.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;T!:&lt;/P&gt;
&lt;PRE&gt;Recnum1	CIN
101	a
102	(null)
103	a
104	c
105	e
106	(null)
107	f
108	f
109	g
&lt;/PRE&gt;
&lt;P&gt;T2:&lt;/P&gt;
&lt;PRE&gt;Recnum2	CIN
201	(null)
202	a
203	a
204	b
205	b
206	c
207	c
208	(null)
209	g
&lt;/PRE&gt;</description>
      <pubDate>Wed, 17 May 2023 03:08:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Condition-on-Inner-Join-and-the-rest/m-p/876153#M42976</guid>
      <dc:creator>TomKari</dc:creator>
      <dc:date>2023-05-17T03:08:37Z</dc:date>
    </item>
    <item>
      <title>Re: Condition on Inner Join and the rest.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Condition-on-Inner-Join-and-the-rest/m-p/876150#M42974</link>
      <description>&lt;P&gt;It's a good question, but I think you've got yourself into a bit of a muddle. I explain a SQL join as "First, all of the records are matched with all of the records (a cartesian join)." "Second, based on your selection criteria, any records that don't match the criteria are removed". So, suppose t1.CIN values are a, c, e and t2.CIN values are b, c, e. After step one, you'll have 9 records with keys a, b; a, c; a, e; c, b; c, c; c, e; e, b; e, c; e, e. Now, step 2, follow the selection criteria. This will remove records c, c and e, e leaving you with 7 records.&lt;/P&gt;
&lt;P&gt;Tom&lt;/P&gt;</description>
      <pubDate>Wed, 17 May 2023 02:42:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Condition-on-Inner-Join-and-the-rest/m-p/876150#M42974</guid>
      <dc:creator>TomKari</dc:creator>
      <dc:date>2023-05-17T02:42:35Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Bowl XXXI, SAS Support Communities</title>
      <link>https://communities.sas.com/t5/Upcoming-Events/SAS-Bowl-XXXI-SAS-Support-Communities/ec-p/875274#M452</link>
      <description>&lt;P&gt;Something went wrong!?! I could see the game panel, but all of the interaction was missing! So sorry I missed you guys, hopefully the tech gremlins will have departed by the next one.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Tom&lt;/P&gt;</description>
      <pubDate>Thu, 11 May 2023 16:13:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Upcoming-Events/SAS-Bowl-XXXI-SAS-Support-Communities/ec-p/875274#M452</guid>
      <dc:creator>TomKari</dc:creator>
      <dc:date>2023-05-11T16:13:26Z</dc:date>
    </item>
    <item>
      <title>Re: General SAS Question</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/General-SAS-Question/m-p/873273#M42823</link>
      <description>&lt;P&gt;In addition to Cynthia's response, which is absolutely correct, SAS has a number of tools that give an easier "look and feel" to meeting both data processing and statistical analysis requirements. Two very popular ones are SAS Enterprise Guide and SAS Studio. An interesting feature of both of them is that they create SAS code in the background, based on which options you select in the tool, and you can then use this code to learn SAS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I suggest you ask your local SAS resources which products you have licensed, and let us know. We can then make some suggestions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Tom&lt;/P&gt;</description>
      <pubDate>Mon, 01 May 2023 20:44:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/General-SAS-Question/m-p/873273#M42823</guid>
      <dc:creator>TomKari</dc:creator>
      <dc:date>2023-05-01T20:44:36Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Bowl XXXI, SAS Support Communities</title>
      <link>https://communities.sas.com/t5/Upcoming-Events/SAS-Bowl-XXXI-SAS-Support-Communities/ec-p/870069#M435</link>
      <description>&lt;P&gt;What a great idea! It's been so long since I've been to a live SAS event, I have NO CLUE where my SAS swag is...&lt;SPAN class="x1xsqp64 xiy17q3 x1o6pynw x19co3pv xdj266r xcwd3tp xat24cr x39eecv x2b8uid" data-testid="emoji"&gt;&lt;SPAN class="xexx8yu xn5pp95 x18d9i69 x2fxd7x x1yqt14a x1bhl96m"&gt;&lt;span class="lia-unicode-emoji" title=":worried_face:"&gt;😟&lt;/span&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 16 Apr 2023 16:56:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Upcoming-Events/SAS-Bowl-XXXI-SAS-Support-Communities/ec-p/870069#M435</guid>
      <dc:creator>TomKari</dc:creator>
      <dc:date>2023-04-16T16:56:52Z</dc:date>
    </item>
    <item>
      <title>Re: Extract data from ASC file</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Extract-data-from-ASC-file/m-p/862214#M42460</link>
      <description>&lt;P&gt;You need to provide a few details. What does your file look like? When you say ASC, do you mean an ascii text file? Can you include a couple of lines of the file?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Tom&lt;/P&gt;</description>
      <pubDate>Fri, 03 Mar 2023 21:07:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Extract-data-from-ASC-file/m-p/862214#M42460</guid>
      <dc:creator>TomKari</dc:creator>
      <dc:date>2023-03-03T21:07:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate monthly hospital visits and mortality rates in large clinical data?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-calculate-monthly-hospital-visits-and-mortality-rates-in/m-p/850401#M41905</link>
      <description>&lt;P&gt;Okay, first some questions that will make it easier to provide advice:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. You say a "large" clinical data set. Roughly how many records? Is it a flat file, a SAS dataset, or in a database?&lt;/P&gt;
&lt;P&gt;2. I suggest you post a sample of a couple of dozen records. They can be fake, or have bits redacted, as long as we can see the fields that are important. Ideally, use this post to create some data for us to experiment with:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712" target="_blank"&gt;https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Again, don't post anything confidential.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Tom&lt;/P&gt;</description>
      <pubDate>Mon, 19 Dec 2022 22:06:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-calculate-monthly-hospital-visits-and-mortality-rates-in/m-p/850401#M41905</guid>
      <dc:creator>TomKari</dc:creator>
      <dc:date>2022-12-19T22:06:24Z</dc:date>
    </item>
    <item>
      <title>Re: Scheduling Enterprise Guide via the management console</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Scheduling-Enterprise-Guide-via-the-management-console/m-p/847357#M41817</link>
      <description>&lt;P&gt;Here's a post I made a while ago, and I still think it's valid.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Tom&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;==============================================&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I recommend you use O/S scheduling (cron, scripts on Linux) capabilities or one of the SAS server-side products to schedule production jobs.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Enterprise Guide is a great tool, but I don't feel it's the best for scheduling production jobs on a remote server, as there are too many moving pieces (your machine, the network, and finally your SAS server). If any of these is having issues, it can interfere with your job executing correctly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Use EG to develop and test your code, and for exploratory data analysis. Once you have your SAS programs going the way they should be, put them on the server and schedule them there.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you search this site, you'll find a lot of posts that recommend this, in response to people who are experiencing problems using the EG scheduling facilities.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Dec 2022 21:32:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Scheduling-Enterprise-Guide-via-the-management-console/m-p/847357#M41817</guid>
      <dc:creator>TomKari</dc:creator>
      <dc:date>2022-12-01T21:32:10Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a reliable way to import calendar dates from excel to SAS in the EPG?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Is-there-a-reliable-way-to-import-calendar-dates-from-excel-to/m-p/847353#M41816</link>
      <description>&lt;P&gt;I've used ddmmmyyyy for a number of years, so today would be&amp;nbsp;01Dec2022. I've never had a problem with it, but I haven't tested it exhaustively either.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Dec 2022 21:22:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Is-there-a-reliable-way-to-import-calendar-dates-from-excel-to/m-p/847353#M41816</guid>
      <dc:creator>TomKari</dc:creator>
      <dc:date>2022-12-01T21:22:02Z</dc:date>
    </item>
  </channel>
</rss>

