<?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>AndrewHowell Tracker</title>
    <link>https://communities.sas.com/kntur85557/tracker</link>
    <description>AndrewHowell Tracker</description>
    <pubDate>Tue, 12 May 2026 16:33:02 GMT</pubDate>
    <dc:date>2026-05-12T16:33:02Z</dc:date>
    <item>
      <title>DB2 pass-through SQL - unknown functions/clauses?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/DB2-pass-through-SQL-unknown-functions-clauses/m-p/860069#M82510</link>
      <description>&lt;P&gt;Thought I was ok with pass-thru SQL, but trying to understand:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;The &lt;STRONG&gt;WEEKDAYCD='' WITH UR&lt;/STRONG&gt; clause? &lt;EM&gt;(Presumably some DB2-specific syntax I haven't seen before)&lt;/EM&gt;&lt;/LI&gt;
&lt;LI&gt;What the &lt;STRONG&gt;X(DT)&lt;/STRONG&gt; does? &lt;EM&gt;(Is this passed-through, so DB2-specific? Or a SAS function? Is it an SQL variant of the 'X' command?)&lt;/EM&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Thanks.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC SQL;
  CONNECT TO DB2(SSID=DSN);
  CREATE TABLE MYWORK AS SELECT * FROM CONNECTION TO DB2
    (SELECT MAX(BIRTH_DT)
      FROM CUST.CALENDAR
      WHERE BIRTH_DT &amp;lt; CURRENT DATE
      AND WEEKDAYCD='' WITH UR)X(DT); 
DISCONNECT FROM DB2;
QUIT;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 22 Feb 2023 04:57:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/DB2-pass-through-SQL-unknown-functions-clauses/m-p/860069#M82510</guid>
      <dc:creator>AndrewHowell</dc:creator>
      <dc:date>2023-02-22T04:57:13Z</dc:date>
    </item>
    <item>
      <title>Re: PROC SQL row order</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-SQL-row-order/m-p/624077#M183771</link>
      <description>&lt;P&gt;Thank all for the responses.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To clarify - yes, the new code will be better &amp;amp; tighter, but we are trying to set up some regression testing on the existing (less than stellar) code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Feb 2020 03:56:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-SQL-row-order/m-p/624077#M183771</guid>
      <dc:creator>AndrewHowell</dc:creator>
      <dc:date>2020-02-12T03:56:12Z</dc:date>
    </item>
    <item>
      <title>PROC SQL row order</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-SQL-row-order/m-p/624045#M183761</link>
      <description>&lt;P&gt;PROC SQL - if there is no "ORDER BY", does PROC SQL retain row order when using SET &amp;amp; UNION operators?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;e.g,&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;

    insert into table1
        select a, b, c, d from table2;

    create table table1 as
        select * from table1
        union all
        select * from table2;

quit;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;EM&gt;(Yes, if it were me I'd put an "ORDER BY" clause, but we're trying to set up regression testing for some existing code.)&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'd assumed row order would be retained, but then read the following:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;SUGI 31:&amp;nbsp;242-31 "SQL SET&amp;nbsp;OPERATORS: SO HANDY&amp;nbsp;VENN&amp;nbsp;YOU&amp;nbsp;NEED&amp;nbsp;THEM",&amp;nbsp;Howard Schreier, Howles Informatics.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;"Since there is no ORDER BY clause in the SQL code, the SQL processor is not obligated to deliver its results in any particular order. The order we observe is basically a consequence of internal optimization; the processor is avoiding unnecessary work by simply preserving the order in which it encounters the rows."&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've searched for clarifying documentation but cannot find any.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there definitive documentation somewhere clarifying returned row order if there is no "ORDER BY" clause?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Andrew.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Feb 2020 23:04:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-SQL-row-order/m-p/624045#M183761</guid>
      <dc:creator>AndrewHowell</dc:creator>
      <dc:date>2020-02-11T23:04:46Z</dc:date>
    </item>
    <item>
      <title>Re: Dx.p format -</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Dx-p-format/m-p/593658#M170404</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16961"&gt;@ChrisNZ&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've tried 32.0 up to 32.9 (32.0 is same as 32.3). The result is still MORE decimals than&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So I guess I'm looking for clear documentation on what the "D" format is actually &lt;STRONG&gt;FOR&lt;/STRONG&gt;, and how to know - with certainty - what the output would be for various values of width and/or decimal.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Background: I'm storing the result in strings, and I need to know the length of the strings and the placement of the decimal point.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Oct 2019 09:45:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Dx-p-format/m-p/593658#M170404</guid>
      <dc:creator>AndrewHowell</dc:creator>
      <dc:date>2019-10-03T09:45:10Z</dc:date>
    </item>
    <item>
      <title>Dx.p format -</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Dx-p-format/m-p/593383#M170279</link>
      <description>&lt;P&gt;Trying to make sense of the "D" numeric format, and when best to use it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And why a "&lt;STRONG&gt;put(12345,D32.9)&lt;/STRONG&gt;" yields "&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;STRONG&gt;12345.0000000000000000&lt;/STRONG&gt;" (16 zeroes)?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Why use D32.9 when I could use 32.16?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The documentation seems a bit hard to decypher (summary below).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any assistance appreciated - use cases, perhaps?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/leforinforref/64790/HTML/default/viewer.htm#p14hdw0zjbxr9tn1an4mgxor9pc2.htm" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;Dx.p format - SAS(R) 9.4 Formats and Informats: Reference&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Prints numeric values, possibly with a great range of values, lining up decimal places for values of similar magnitude.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Details - The Dw.p format writes numbers so that the decimal point aligns in groups of values with similar magnitude. Larger values of p print the data values with more precision and potentially more shifts in the decimal point alignment. Smaller values of p print the data values with less precision and a greater chance of decimal point alignment.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Comparisons&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;The BESTw. format writes as many significant digits as possible in the output field, but if the numbers vary in magnitude, the decimal points do not line up.&lt;/LI&gt;
&lt;LI&gt;Dw.p writes numbers with the desired precision and more alignment than the BESTw format.&lt;/LI&gt;
&lt;LI&gt;The BESTDw.p format is a combination of the BESTw. format and the Dw.p format in that it formats all numeric data, and it does a better job of aligning decimals than the BESTw. format.&lt;/LI&gt;
&lt;LI&gt;The w.d format aligns decimal points, if possible, but it does not necessarily show the same precision for all numbers.&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Wed, 02 Oct 2019 14:22:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Dx-p-format/m-p/593383#M170279</guid>
      <dc:creator>AndrewHowell</dc:creator>
      <dc:date>2019-10-02T14:22:41Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Global Forum 2020 - Need some help from the community.</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-Global-Forum-2020-Need-some-help-from-the-community/m-p/557347#M16237</link>
      <description>&lt;P&gt;Hi Margaret.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Given a lot of existing customers are still on the 9.x platforms, and SAS is advocating Viya, I would strongly recommend a "&lt;STRONG&gt;Migration&lt;/STRONG&gt;" section, consisting of several (&lt;EM&gt;&lt;STRONG&gt;many?&lt;/STRONG&gt;&lt;/EM&gt;) topic on the challenges faced by administrators when migrating.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Andrew.&lt;/P&gt;</description>
      <pubDate>Thu, 09 May 2019 02:44:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-Global-Forum-2020-Need-some-help-from-the-community/m-p/557347#M16237</guid>
      <dc:creator>AndrewHowell</dc:creator>
      <dc:date>2019-05-09T02:44:19Z</dc:date>
    </item>
    <item>
      <title>Re: SGF Saturday night - where to meet?</title>
      <link>https://communities.sas.com/t5/SAS-Global-Forum-2019/SGF-Saturday-night-where-to-meet/m-p/554836#M463</link>
      <description>&lt;P&gt;No more SAS &lt;STRONG&gt;&lt;EM&gt;#tweetup&lt;/EM&gt;&lt;/STRONG&gt; sessions..??&amp;nbsp;&lt;img id="smileysad" class="emoticon emoticon-smileysad" src="https://communities.sas.com/i/smilies/16x16_smiley-sad.png" alt="Smiley Sad" title="Smiley Sad" /&gt;&amp;nbsp; &lt;EM&gt;&lt;STRONG&gt;[UnLike!]&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Apr 2019 19:50:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Global-Forum-2019/SGF-Saturday-night-where-to-meet/m-p/554836#M463</guid>
      <dc:creator>AndrewHowell</dc:creator>
      <dc:date>2019-04-29T19:50:11Z</dc:date>
    </item>
    <item>
      <title>Re: SGF Saturday night - where to meet?</title>
      <link>https://communities.sas.com/t5/SAS-Global-Forum-2019/SGF-Saturday-night-where-to-meet/m-p/554472#M445</link>
      <description>&lt;P&gt;Sounds like a plan,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/19750"&gt;@MichelleHomes&lt;/a&gt; -&amp;nbsp;see you there.&lt;/P&gt;</description>
      <pubDate>Sat, 27 Apr 2019 13:47:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Global-Forum-2019/SGF-Saturday-night-where-to-meet/m-p/554472#M445</guid>
      <dc:creator>AndrewHowell</dc:creator>
      <dc:date>2019-04-27T13:47:53Z</dc:date>
    </item>
    <item>
      <title>Re: SGF Saturday night - where to meet?</title>
      <link>https://communities.sas.com/t5/SAS-Global-Forum-2019/SGF-Saturday-night-where-to-meet/m-p/554121#M423</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/38068"&gt;@CJac73&lt;/a&gt;&amp;nbsp;, but what I meant was whether the collective SAS hive mind had formulated some sort of gathering somewhere..&lt;/P&gt;</description>
      <pubDate>Fri, 26 Apr 2019 00:44:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Global-Forum-2019/SGF-Saturday-night-where-to-meet/m-p/554121#M423</guid>
      <dc:creator>AndrewHowell</dc:creator>
      <dc:date>2019-04-26T00:44:03Z</dc:date>
    </item>
    <item>
      <title>SGF Saturday night - where to meet?</title>
      <link>https://communities.sas.com/t5/SAS-Global-Forum-2019/SGF-Saturday-night-where-to-meet/m-p/553910#M415</link>
      <description>&lt;P&gt;Ideas for a catch-up Saturday night in Dallas?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;(Saw the Stravinsky suggestion - considering it, just seeing what else is happening..)&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Apr 2019 10:49:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Global-Forum-2019/SGF-Saturday-night-where-to-meet/m-p/553910#M415</guid>
      <dc:creator>AndrewHowell</dc:creator>
      <dc:date>2019-04-25T10:49:01Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to get around Dallas?</title>
      <link>https://communities.sas.com/t5/SAS-Global-Forum-2019/What-is-the-best-way-to-get-around-Dallas/m-p/553905#M414</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/270512"&gt;@schatja&lt;/a&gt;&amp;nbsp;- links to the app are in the "Get Ready" section at the bottom of &lt;A href="https://www.sas.com/en_us/events/sas-global-forum/attend/travel.html" target="_blank" rel="noopener"&gt;https://www.sas.com/en_us/events/sas-global-forum/attend/travel.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Apr 2019 10:36:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Global-Forum-2019/What-is-the-best-way-to-get-around-Dallas/m-p/553905#M414</guid>
      <dc:creator>AndrewHowell</dc:creator>
      <dc:date>2019-04-25T10:36:08Z</dc:date>
    </item>
    <item>
      <title>Re: What is the best way to get around Dallas?</title>
      <link>https://communities.sas.com/t5/SAS-Global-Forum-2019/What-is-the-best-way-to-get-around-Dallas/m-p/553871#M412</link>
      <description>&lt;P&gt;There are DART disruptions on the weekend, which will affect anyone coming into town from DFW on the Orange Line.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've posted info &lt;A href="https://communities.sas.com/t5/SAS-Global-Forum-2019/DART-travel-from-DFW-to-SGF-Weekend-rail-service-suspended/gpm-p/553870/jump-to/first-unread-message" target="_blank" rel="noopener"&gt;here&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/33134"&gt;@gmbaker&lt;/a&gt;&amp;nbsp;- might be worth adding a note to the travel section in the SGF app &lt;EM&gt;(which I haven't got around to downloading yet..)&lt;/EM&gt;?&lt;/P&gt;</description>
      <pubDate>Thu, 25 Apr 2019 07:00:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Global-Forum-2019/What-is-the-best-way-to-get-around-Dallas/m-p/553871#M412</guid>
      <dc:creator>AndrewHowell</dc:creator>
      <dc:date>2019-04-25T07:00:23Z</dc:date>
    </item>
    <item>
      <title>Re: You TOO can earn communities swag! Here’s how</title>
      <link>https://communities.sas.com/t5/SAS-Global-Forum-2019/You-TOO-can-earn-communities-swag-Here-s-how/m-p/553188#M377</link>
      <description>&lt;P&gt;Badge checklist:&lt;BR /&gt;- "To The Rescue" - tick!&lt;BR /&gt;- "Fire Starter" - tick!&lt;BR /&gt;- "First Accepted Solution" - tick!&lt;BR /&gt;- "Regular Attendance 2019" - tick!&lt;BR /&gt;- "Motivator" - tick!&lt;BR /&gt;Recent activity - almost every day, so hopefully tick!&lt;/P&gt;</description>
      <pubDate>Tue, 23 Apr 2019 12:27:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Global-Forum-2019/You-TOO-can-earn-communities-swag-Here-s-how/m-p/553188#M377</guid>
      <dc:creator>AndrewHowell</dc:creator>
      <dc:date>2019-04-23T12:27:56Z</dc:date>
    </item>
    <item>
      <title>Re: Picking up Every Second Last Observation</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Picking-up-Every-Second-Last-Observation/m-p/549163#M152351</link>
      <description>&lt;P&gt;Are I &amp;amp; T fixed at (say) 500 &amp;amp; 10, respectively?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If so, then just filter the top 3 values of T (8, 9, 10)?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data temp1;
	set temp;
	where t in (8,9,10);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Or if this is oversimplifying, then try (something like) this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data temp1;
	set temp;
	by i t;
	OnePrev=lag1(y); TwoPrev=lag2(y);
	if last.i then output;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Apr 2019 04:02:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Picking-up-Every-Second-Last-Observation/m-p/549163#M152351</guid>
      <dc:creator>AndrewHowell</dc:creator>
      <dc:date>2019-04-08T04:02:26Z</dc:date>
    </item>
    <item>
      <title>Re: Design question SAS 9.4/VA 7.3 - Reload-On-Start / AutoLoad of non-SAS data</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Design-question-SAS-9-4-VA-7-3-Reload-On-Start-AutoLoad-of-non/m-p/545089#M15938</link>
      <description>&lt;P&gt;Hi Juan, hope you are well.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your response - it confirms what I suspected &lt;EM&gt;(but was hoping for something better from someone who knew more than me)&lt;/EM&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I also have a ticket logged with SAS Technical Support, so I'll see if they come up with anything.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Andrew.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2019 22:45:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Design-question-SAS-9-4-VA-7-3-Reload-On-Start-AutoLoad-of-non/m-p/545089#M15938</guid>
      <dc:creator>AndrewHowell</dc:creator>
      <dc:date>2019-03-21T22:45:44Z</dc:date>
    </item>
    <item>
      <title>Design question SAS 9.4/VA 7.3 - Reload-On-Start / AutoLoad of non-SAS data</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Design-question-SAS-9-4-VA-7-3-Reload-On-Start-AutoLoad-of-non/m-p/544732#M15907</link>
      <description>&lt;P&gt;&lt;EM&gt;Not getting any nibbles in the VA community, so thought I'd try here for a design perspective..&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SAS v9.4 (Linux) &amp;amp; VA v7.3 on a 6-node Cloudera Big Data Appliance (BDA).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Looking to better understand loading options loading Hadoop data (Hive) into LASR libraries - Reload-On-Start, AutoLoad, scheduling, etc.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Preferences:&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;Stored data is Hive&lt;/STRONG&gt;, so that other software (not just SAS VA) can access it.&lt;/LI&gt;
&lt;LI&gt;Load the data from disk directly to in-memory LASR, without being piped via an external SAS server running SAS code.&lt;/LI&gt;
&lt;LI&gt;Avoid storing SAS-native copy of the data - SASHDAT (for Reload-On-Start) or SASBDAT (for AutoLoad).&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;STRONG&gt;Q's:&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;What Reload/AutoLoad capabilities do we have with Hive data?&lt;/LI&gt;
&lt;LI&gt;If we HAVE to make a (SAS-specific) copy of the data, would appreciate recommendations for Reload / AutoLoad.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Mar 2019 23:22:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Design-question-SAS-9-4-VA-7-3-Reload-On-Start-AutoLoad-of-non/m-p/544732#M15907</guid>
      <dc:creator>AndrewHowell</dc:creator>
      <dc:date>2019-03-20T23:22:57Z</dc:date>
    </item>
    <item>
      <title>Re: Single vs doublr trailing @:s?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Single-vs-doublr-trailing-s/m-p/543852#M150362</link>
      <description>&lt;P&gt;&lt;STRONG&gt;A SINGLE trailing "@" holds the input buffer only for the current iteration of the data step&lt;/STRONG&gt; (i.e, til processing returns to the top of the data step), or is passed a subsequent INPUT statement without a trailing "@".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;A DOUBLE trailing "@" holds the input buffer indefinitely&lt;/STRONG&gt; (i.e, multiple iterations of the data step) as long as there is data in the input buffer to read.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope that helps?&lt;/P&gt;</description>
      <pubDate>Sun, 17 Mar 2019 23:19:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Single-vs-doublr-trailing-s/m-p/543852#M150362</guid>
      <dc:creator>AndrewHowell</dc:creator>
      <dc:date>2019-03-17T23:19:39Z</dc:date>
    </item>
    <item>
      <title>Re: SAS clients on Apple Mac?</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-clients-on-Apple-Mac/m-p/519008#M15203</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11650"&gt;@SimonDawson&lt;/a&gt;&amp;nbsp;- thanks, figured that may be the answer.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I had hoped for either:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;ALL Java clients to be able to be run from X, or;&lt;/LI&gt;
&lt;LI&gt;At the vary least, the Java source was included in the deployment to able to compile if required.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;EM&gt;Oh well.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Dec 2018 03:29:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-clients-on-Apple-Mac/m-p/519008#M15203</guid>
      <dc:creator>AndrewHowell</dc:creator>
      <dc:date>2018-12-06T03:29:33Z</dc:date>
    </item>
    <item>
      <title>Re: SAS clients on Apple Mac?</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-clients-on-Apple-Mac/m-p/518995#M15201</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11650"&gt;@SimonDawson&lt;/a&gt;&amp;nbsp;- thanks for the comprehensive response.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any reason why only SAS Management Console, and not the other Java clients (esp DI Studio)?&lt;/P&gt;</description>
      <pubDate>Thu, 06 Dec 2018 00:15:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-clients-on-Apple-Mac/m-p/518995#M15201</guid>
      <dc:creator>AndrewHowell</dc:creator>
      <dc:date>2018-12-06T00:15:26Z</dc:date>
    </item>
    <item>
      <title>Re: SAS clients on Apple Mac?</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-clients-on-Apple-Mac/m-p/518994#M15200</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/1540"&gt;@ronan&lt;/a&gt;&amp;nbsp;- yes, concur thick clients require X.&amp;nbsp;I'm looking for the next extension of that to clarify what SAS Java client apps can/can't be run on MacOS using X.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SAS Management Console is available to launch:&amp;nbsp;&lt;STRONG&gt;$SASHOME/SASManagementConsole/9.4/sasmc&lt;/STRONG&gt;&lt;EM&gt; (I use it often.)&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What about running the other Java client apps (SAS Data Integration Studio, in particular) on MacOS using X?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example, I can't find an equivalent &lt;STRONG&gt;distudio&lt;/STRONG&gt; executable in the $SASHOME folder - does this mean is just has to be compiled, can it be compiled, or is there a critical reason it's not there which would render my search futile?&lt;/P&gt;</description>
      <pubDate>Thu, 06 Dec 2018 00:14:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-clients-on-Apple-Mac/m-p/518994#M15200</guid>
      <dc:creator>AndrewHowell</dc:creator>
      <dc:date>2018-12-06T00:14:23Z</dc:date>
    </item>
  </channel>
</rss>

