<?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>Steelers_In_DC Tracker</title>
    <link>https://communities.sas.com/kntur85557/tracker</link>
    <description>Steelers_In_DC Tracker</description>
    <pubDate>Tue, 12 May 2026 22:27:07 GMT</pubDate>
    <dc:date>2026-05-12T22:27:07Z</dc:date>
    <item>
      <title>sql server using 'with'</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sql-server-using-with/m-p/954779#M372871</link>
      <description>&lt;P&gt;I am using a pass through connection to sql server.&amp;nbsp; I am attempting to translate from a pass through connection to hadoop.&amp;nbsp; Can anyone look a the code below and see if this looks correct.&amp;nbsp; The normal way I use the pass through to sql server isn't working due to an extra open parenthesis, but when I remove it I still get an error.&amp;nbsp; The open parens prior to select distinct, as well as the open parens in front of WITH are the issue.&amp;nbsp; If I add another close parens at the end it errors.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc sql;&lt;BR /&gt;connect to sqlsvr (dsn=chsrproddb &amp;amp;_log_host);&lt;BR /&gt;CREATE TABLE FullData AS&lt;BR /&gt;SELECT * FROM CONNECTION TO sqlsvr &lt;BR /&gt;(select distinct &lt;BR /&gt;(WITH this_srvc_auth AS&lt;BR /&gt;( SELECT&lt;/P&gt;</description>
      <pubDate>Mon, 30 Dec 2024 15:18:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sql-server-using-with/m-p/954779#M372871</guid>
      <dc:creator>Steelers_In_DC</dc:creator>
      <dc:date>2024-12-30T15:18:48Z</dc:date>
    </item>
    <item>
      <title>Re: hive show table and column</title>
      <link>https://communities.sas.com/t5/SAS-Programming/hive-show-table-and-column/m-p/908048#M358400</link>
      <description>&lt;P&gt;this is not ODBC:&lt;/P&gt;
&lt;DIV&gt;proc sql;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; connect to hadoop&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; (READ_METHOD=HDFS&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;/* this attemps HDFS read which is faster than JDBC */&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; server=''&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; /* the hiveserver we talk to */&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; LOGIN_TIMEOUT=300&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; schema=&amp;amp;schema.&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;/* this is the schema where you want to read or write data to */&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; uri=&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 14 Dec 2023 18:34:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/hive-show-table-and-column/m-p/908048#M358400</guid>
      <dc:creator>Steelers_In_DC</dc:creator>
      <dc:date>2023-12-14T18:34:55Z</dc:date>
    </item>
    <item>
      <title>hive show table and column</title>
      <link>https://communities.sas.com/t5/SAS-Programming/hive-show-table-and-column/m-p/908044#M358398</link>
      <description>&lt;P&gt;I found the below solution in our community but would like to adapt it to include columns:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;this is passing through to hadoop:&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;select * from connection to hadoop (show tables);&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Is there a modification that can show tables and columns?&lt;/DIV&gt;</description>
      <pubDate>Thu, 14 Dec 2023 17:53:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/hive-show-table-and-column/m-p/908044#M358398</guid>
      <dc:creator>Steelers_In_DC</dc:creator>
      <dc:date>2023-12-14T17:53:15Z</dc:date>
    </item>
    <item>
      <title>proc sql using or</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-sql-using-or/m-p/896451#M82961</link>
      <description>&lt;P&gt;I have some legacy code that takes a very long time to run, on join is &amp;gt; 8 hours.&amp;nbsp; When I break it down it has many or and multiple filters:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc sql;&lt;/P&gt;
&lt;P&gt;create table have as&lt;/P&gt;
&lt;P&gt;select a.*,b.*&lt;/P&gt;
&lt;P&gt;from table 1 a,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;table 2 b&lt;/P&gt;
&lt;P&gt;where a.id = b.id&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; and blah&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; or where a.id = b.id&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; and blah blah blah&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've broken this apart into 6 different queries.&amp;nbsp; I concatenate at the end in a dataset and it runs so much faster I'm shocked.&amp;nbsp; From hours to minutes.&amp;nbsp; I can't find much on using or like this other than it's not efficient.&amp;nbsp; Is there any rules/laws/best practices/documentation somewhere that details this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'd like to have more than my test to take back to the original developers to get them to change their ways.&amp;nbsp; Thank You in advance&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Sep 2023 15:00:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-sql-using-or/m-p/896451#M82961</guid>
      <dc:creator>Steelers_In_DC</dc:creator>
      <dc:date>2023-09-29T15:00:06Z</dc:date>
    </item>
    <item>
      <title>find edge node</title>
      <link>https://communities.sas.com/t5/SAS-Programming/find-edge-node/m-p/801354#M315381</link>
      <description>&lt;P&gt;Hello all, I have very little tech/admin support in my current role.&amp;nbsp; I am trying to find the name of the edge node I am connected to so I can connect elsewhere(putty,crt,jupyter).&amp;nbsp; Is there a way within SAS to see the edgenode?&amp;nbsp; I find some documentation about %macro allPaths() but it hasn't been helpful.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank You in advance.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2022 15:48:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/find-edge-node/m-p/801354#M315381</guid>
      <dc:creator>Steelers_In_DC</dc:creator>
      <dc:date>2022-03-10T15:48:10Z</dc:date>
    </item>
    <item>
      <title>Re: Fill in rows with previous value if next value is the same.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Fill-in-rows-with-previous-value-if-next-value-is-the-same/m-p/775756#M246610</link>
      <description>&lt;P&gt;I see the issue, case is before the set statement so it's a number.&amp;nbsp; I added format case $500.; after the data step and this works.&amp;nbsp; thanks for the help.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Oct 2021 21:00:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Fill-in-rows-with-previous-value-if-next-value-is-the-same/m-p/775756#M246610</guid>
      <dc:creator>Steelers_In_DC</dc:creator>
      <dc:date>2021-10-21T21:00:26Z</dc:date>
    </item>
    <item>
      <title>Re: Fill in rows with previous value if next value is the same.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Fill-in-rows-with-previous-value-if-next-value-is-the-same/m-p/775735#M246597</link>
      <description>&lt;P&gt;this looks great, can up modify this for case as a character?&lt;/P&gt;</description>
      <pubDate>Thu, 21 Oct 2021 19:55:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Fill-in-rows-with-previous-value-if-next-value-is-the-same/m-p/775735#M246597</guid>
      <dc:creator>Steelers_In_DC</dc:creator>
      <dc:date>2021-10-21T19:55:47Z</dc:date>
    </item>
    <item>
      <title>Re: Fill in rows with previous value if next value is the same.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Fill-in-rows-with-previous-value-if-next-value-is-the-same/m-p/775719#M246592</link>
      <description>&lt;P&gt;There is also an ID field,&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I can use:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data want;&lt;/P&gt;
&lt;P&gt;set have;&lt;/P&gt;
&lt;P&gt;by id;&lt;/P&gt;
&lt;P&gt;retain _case;&lt;/P&gt;
&lt;P&gt;if not missing(case_id) then _case = case_id;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;that gets me part of the way, but it fills in the last rows when the next value will not be the same.&amp;nbsp; &amp;nbsp;I suppose I could sort the other way and delete some.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Oct 2021 18:03:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Fill-in-rows-with-previous-value-if-next-value-is-the-same/m-p/775719#M246592</guid>
      <dc:creator>Steelers_In_DC</dc:creator>
      <dc:date>2021-10-21T18:03:49Z</dc:date>
    </item>
    <item>
      <title>Fill in rows with previous value if next value is the same.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Fill-in-rows-with-previous-value-if-next-value-is-the-same/m-p/775703#M246589</link>
      <description>&lt;P&gt;I have a file with a case number that is sporadically filled in.&amp;nbsp; The file is 500k plus rows, If the next time a case # is filled in happens to be the same case # as before I want to fill in the blanks.&amp;nbsp; I thought of using lag() but some of the missing rows are pretty large.&amp;nbsp; If the next case # populated is different the rows between should be left blank.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data have;&lt;BR /&gt;infile cards dsd;&lt;BR /&gt;input case$ ;&lt;BR /&gt;cards;&lt;BR /&gt;500&lt;BR /&gt;,&lt;BR /&gt;,&lt;BR /&gt;,&lt;BR /&gt;500&lt;BR /&gt;,&lt;BR /&gt;600&lt;BR /&gt;,&lt;BR /&gt;,&lt;BR /&gt;700&lt;BR /&gt;700&lt;BR /&gt;,&lt;BR /&gt;700&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;data want;&lt;BR /&gt;infile cards dsd;&lt;BR /&gt;input case$ ;&lt;BR /&gt;cards;&lt;BR /&gt;500&lt;BR /&gt;500&lt;BR /&gt;500&lt;BR /&gt;500&lt;BR /&gt;500&lt;BR /&gt;,&lt;BR /&gt;600&lt;BR /&gt;,&lt;BR /&gt;,&lt;BR /&gt;700&lt;BR /&gt;700&lt;BR /&gt;700&lt;BR /&gt;700&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Oct 2021 17:31:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Fill-in-rows-with-previous-value-if-next-value-is-the-same/m-p/775703#M246589</guid>
      <dc:creator>Steelers_In_DC</dc:creator>
      <dc:date>2021-10-21T17:31:59Z</dc:date>
    </item>
    <item>
      <title>Re: reg ex extract</title>
      <link>https://communities.sas.com/t5/SAS-Programming/reg-ex-extract/m-p/774499#M246173</link>
      <description>&lt;P&gt;I'm always open to suggestions but in case this can help anyone else I'm going to put my solution below:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;/*identifies word case in string*/&lt;/P&gt;
&lt;P&gt;data p_case;&lt;BR /&gt;set check_case(obs=10 keep=Event_Log_Derived_Details);&lt;BR /&gt;if _N_ &amp;gt; 0 then do;&lt;BR /&gt;p_case = prxparse("/Case/");&lt;BR /&gt;end;&lt;BR /&gt;find_case = prxmatch(p_case,Event_Log_Derived_Details);&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;/*uses place of 'Case' in string to get substring with '/' as the delimiter to extract the desired ID 'case' number*/&lt;/P&gt;
&lt;P&gt;data find_case;&lt;BR /&gt;set p_case;&lt;BR /&gt;case = scan(substr(Event_Log_Derived_Details,find_case),2,'/');&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Oct 2021 14:06:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/reg-ex-extract/m-p/774499#M246173</guid>
      <dc:creator>Steelers_In_DC</dc:creator>
      <dc:date>2021-10-15T14:06:42Z</dc:date>
    </item>
    <item>
      <title>reg ex extract</title>
      <link>https://communities.sas.com/t5/SAS-Programming/reg-ex-extract/m-p/774496#M246172</link>
      <description>&lt;P&gt;I have a long alpha numeric string with front slash delimiters throughout.&amp;nbsp; Within the string are specific 'case' id numbers.&amp;nbsp; I am trying to get everything in the string after the word 'Case', after that I can use the delimiter to drop everything after that.&amp;nbsp; I'm so out of practice with regex that I haven't been able to get there searching.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;any help is appreciated.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Oct 2021 13:52:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/reg-ex-extract/m-p/774496#M246172</guid>
      <dc:creator>Steelers_In_DC</dc:creator>
      <dc:date>2021-10-15T13:52:13Z</dc:date>
    </item>
    <item>
      <title>Re: proc transpose wide to tall, numbers lose formatting</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-transpose-wide-to-tall-numbers-lose-formatting/m-p/707095#M79980</link>
      <description>&lt;P&gt;Spot on, I didn't realize I missed one of the (pre transpose) columns in formatting.&amp;nbsp; Once I fixed that it's perfect, and the formatting held through the proc report.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Have a great weekend, Happy Holidays, stay healthy.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Dec 2020 21:31:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-transpose-wide-to-tall-numbers-lose-formatting/m-p/707095#M79980</guid>
      <dc:creator>Steelers_In_DC</dc:creator>
      <dc:date>2020-12-18T21:31:23Z</dc:date>
    </item>
    <item>
      <title>proc transpose wide to tall, numbers lose formatting</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-transpose-wide-to-tall-numbers-lose-formatting/m-p/707083#M79978</link>
      <description>&lt;P&gt;I have a simple transpose from wide with 11 columns to tall with 3 columns.&amp;nbsp; When the data is wide the numbers are formatted to show commas, when tall they lose the formatting.&amp;nbsp; Is there anyway in the proc to format the columns?&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm following up with a proc report, so if I can format there I'll be happy to do it there.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Dec 2020 21:17:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-transpose-wide-to-tall-numbers-lose-formatting/m-p/707083#M79978</guid>
      <dc:creator>Steelers_In_DC</dc:creator>
      <dc:date>2020-12-18T21:17:20Z</dc:date>
    </item>
    <item>
      <title>duplicated columns</title>
      <link>https://communities.sas.com/t5/SAS-Programming/duplicated-columns/m-p/645641#M193025</link>
      <description>&lt;P&gt;I have a dataset that appears to have two duplicate columns.&amp;nbsp; One is named _col15, the other is _col18, they both match other columns that I have pulled in from a larger dataset.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've never seen this before, and don't see anything in the code that would generate this.&amp;nbsp; Prior to this dataset there are several simple left joins, nothing else.&amp;nbsp; Any thoughts?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Edit:&amp;nbsp; apologies, I found in the original query that two columns were entered twice, the forum wouldn't let me delete the post.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 May 2020 15:54:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/duplicated-columns/m-p/645641#M193025</guid>
      <dc:creator>Steelers_In_DC</dc:creator>
      <dc:date>2020-05-06T15:54:29Z</dc:date>
    </item>
    <item>
      <title>Re: Hive Statements with PROC SQL</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Hive-Statements-with-PROC-SQL/m-p/642375#M191610</link>
      <description>&lt;P&gt;I'm not sure where in the query process these commands go, would this be after the :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PROC SQL;&lt;BR /&gt;CONNECT TO odbc();&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(enter here)&lt;/P&gt;
&lt;P&gt;and before the:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;CREATE TABLE table AS&lt;/P&gt;</description>
      <pubDate>Thu, 23 Apr 2020 18:57:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Hive-Statements-with-PROC-SQL/m-p/642375#M191610</guid>
      <dc:creator>Steelers_In_DC</dc:creator>
      <dc:date>2020-04-23T18:57:02Z</dc:date>
    </item>
    <item>
      <title>Re: find EG IP address using PC SAS</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/find-EG-IP-address-using-PC-SAS/m-p/616565#M35389</link>
      <description>&lt;P&gt;could this be helpful in anyway?&amp;nbsp; I'm not sure if this tells you if EG is connected the way you are talking about, here is the output from setinit:&lt;/P&gt;
&lt;TABLE width="249"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="249"&gt;Base SAS Software&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;SAS/STAT&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;SAS/GRAPH&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;SAS/ETS&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;SAS/FSP&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;SAS/OR&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;SAS/AF&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;SAS/IML&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;SAS/SHARE&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;SAS/ASSIST&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;SAS/CONNECT&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;SAS/EIS&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;SAS/GIS&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;SAS/SHARE*NET&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;MDDB Server common products&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;SAS/Secure 168&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;SAS/Secure Windows&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;SAS Enterprise Guide&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;OR OPT&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;OR PRS&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;OR IVS&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;OR LSO&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;SAS/ACCESS Interface to SAP ASE&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;SAS/ACCESS Interface to PC Files&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;SAS/ACCESS Interface to ODBC&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;SAS/IML Studio&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;SAS Workspace Server for Local Access&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;High Performance Suite&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;</description>
      <pubDate>Fri, 10 Jan 2020 18:28:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/find-EG-IP-address-using-PC-SAS/m-p/616565#M35389</guid>
      <dc:creator>Steelers_In_DC</dc:creator>
      <dc:date>2020-01-10T18:28:12Z</dc:date>
    </item>
    <item>
      <title>Re: find EG IP address using PC SAS</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/find-EG-IP-address-using-PC-SAS/m-p/616561#M35388</link>
      <description>&lt;P&gt;I understand that, I tried to run proc setinit; but it doesn't run, just sits there and thinks for a long time.&amp;nbsp; I'm not sure what license I have in this seat, I'm working on figuring that out.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jan 2020 18:19:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/find-EG-IP-address-using-PC-SAS/m-p/616561#M35388</guid>
      <dc:creator>Steelers_In_DC</dc:creator>
      <dc:date>2020-01-10T18:19:15Z</dc:date>
    </item>
    <item>
      <title>Re: find EG IP address using PC SAS</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/find-EG-IP-address-using-PC-SAS/m-p/616555#M35386</link>
      <description>&lt;P&gt;Is there anyway to print the log that goes to the&amp;nbsp;&lt;STRONG&gt;object spawner&amp;nbsp;&lt;/STRONG&gt;while I am using PC SAS, I'm at a new client with little support getting connected, so I'm trying to pull the info from PC SAS to enter into EG&amp;nbsp; I see the folder for integrated technologies but nothing in there that I can use.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jan 2020 17:48:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/find-EG-IP-address-using-PC-SAS/m-p/616555#M35386</guid>
      <dc:creator>Steelers_In_DC</dc:creator>
      <dc:date>2020-01-10T17:48:14Z</dc:date>
    </item>
    <item>
      <title>find EG IP address using PC SAS</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/find-EG-IP-address-using-PC-SAS/m-p/616543#M35383</link>
      <description>&lt;P&gt;This is a duplicate message but the original is several years old and I wasn't able to follow it, so I thought it was worth repeating.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am new to a client and trying to connect EG.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have PC SAS but nobody here uses EG, I'd like to use PC SAS and print the IP address to the log.&amp;nbsp; The idea is that I would get the IP address and port from the log in PC SAS, and use that to connect with EG.&amp;nbsp; I hope that makes sense, any help is appreciated.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jan 2020 16:56:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/find-EG-IP-address-using-PC-SAS/m-p/616543#M35383</guid>
      <dc:creator>Steelers_In_DC</dc:creator>
      <dc:date>2020-01-10T16:56:47Z</dc:date>
    </item>
    <item>
      <title>Re: Adding quotes to a Macro Variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Adding-quotes-to-a-Macro-Variable/m-p/561129#M157032</link>
      <description>&lt;P&gt;I'm a big fan of this solution, it helps&amp;nbsp; to use a macro variable date within teradata.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Excellent!&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2019 13:07:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Adding-quotes-to-a-Macro-Variable/m-p/561129#M157032</guid>
      <dc:creator>Steelers_In_DC</dc:creator>
      <dc:date>2019-05-23T13:07:04Z</dc:date>
    </item>
  </channel>
</rss>

