<?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 datalines in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/datalines/m-p/78631#M17004</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all.&lt;/P&gt;&lt;P&gt;I have two columns in Excel:&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 163px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD height="20" width="84"&gt;a&lt;/TD&gt;&lt;TD width="79"&gt;b&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;1234&lt;/TD&gt;&lt;TD&gt;reason&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;12345&lt;/TD&gt;&lt;TD&gt;reason_flag&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;1234567&lt;/TD&gt;&lt;TD&gt;reason_flag&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;12345678&lt;/TD&gt;&lt;TD&gt;reason_flag&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;12345678910&lt;/TD&gt;&lt;TD&gt;reason_flag&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;and I need to put them into SAS. It looks easier to put them under DATALINES neither IMPORT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data result;&lt;/P&gt;&lt;P&gt;/*length a $20. b $20.;*/&lt;/P&gt;&lt;P&gt;input a$ b$ ;&lt;/P&gt;&lt;P&gt;datalines;&lt;/P&gt;&lt;P&gt;1234 reason&lt;/P&gt;&lt;P&gt;12345 reason_flag&lt;/P&gt;&lt;P&gt;1234567 reason_flag&lt;/P&gt;&lt;P&gt;12345678 reason_flag&lt;/P&gt;&lt;P&gt;12345678910 reason_flag&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;in case of SAS 9.x, all I have to do is remove /* */ from the second row and define maximum LENGTH.&lt;/P&gt;&lt;P&gt;The same approach gives &lt;STRONG&gt;TOTALLY DIFFERENT RESULT&lt;/STRONG&gt; in SAS EG:&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" width="276"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD height="20" width="138"&gt;a&lt;/TD&gt;&lt;TD width="138"&gt;b&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl63" height="20"&gt;1234 reason&lt;/TD&gt;&lt;TD class="xl63"&gt;12345 reason_flag&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl63" height="20"&gt;1234567 reason_flag&lt;/TD&gt;&lt;TD class="xl63"&gt;12345678 reason_fla&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could someone explain what the point is????&lt;/P&gt;&lt;P&gt;And what kind of approach might be used , if maximum length of column is unknown, not to loose any character?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 23 Nov 2012 14:19:25 GMT</pubDate>
    <dc:creator>Denis</dc:creator>
    <dc:date>2012-11-23T14:19:25Z</dc:date>
    <item>
      <title>datalines</title>
      <link>https://communities.sas.com/t5/SAS-Programming/datalines/m-p/78631#M17004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all.&lt;/P&gt;&lt;P&gt;I have two columns in Excel:&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 163px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD height="20" width="84"&gt;a&lt;/TD&gt;&lt;TD width="79"&gt;b&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;1234&lt;/TD&gt;&lt;TD&gt;reason&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;12345&lt;/TD&gt;&lt;TD&gt;reason_flag&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;1234567&lt;/TD&gt;&lt;TD&gt;reason_flag&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;12345678&lt;/TD&gt;&lt;TD&gt;reason_flag&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;12345678910&lt;/TD&gt;&lt;TD&gt;reason_flag&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;and I need to put them into SAS. It looks easier to put them under DATALINES neither IMPORT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data result;&lt;/P&gt;&lt;P&gt;/*length a $20. b $20.;*/&lt;/P&gt;&lt;P&gt;input a$ b$ ;&lt;/P&gt;&lt;P&gt;datalines;&lt;/P&gt;&lt;P&gt;1234 reason&lt;/P&gt;&lt;P&gt;12345 reason_flag&lt;/P&gt;&lt;P&gt;1234567 reason_flag&lt;/P&gt;&lt;P&gt;12345678 reason_flag&lt;/P&gt;&lt;P&gt;12345678910 reason_flag&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;in case of SAS 9.x, all I have to do is remove /* */ from the second row and define maximum LENGTH.&lt;/P&gt;&lt;P&gt;The same approach gives &lt;STRONG&gt;TOTALLY DIFFERENT RESULT&lt;/STRONG&gt; in SAS EG:&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" width="276"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD height="20" width="138"&gt;a&lt;/TD&gt;&lt;TD width="138"&gt;b&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl63" height="20"&gt;1234 reason&lt;/TD&gt;&lt;TD class="xl63"&gt;12345 reason_flag&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl63" height="20"&gt;1234567 reason_flag&lt;/TD&gt;&lt;TD class="xl63"&gt;12345678 reason_fla&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could someone explain what the point is????&lt;/P&gt;&lt;P&gt;And what kind of approach might be used , if maximum length of column is unknown, not to loose any character?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Nov 2012 14:19:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/datalines/m-p/78631#M17004</guid>
      <dc:creator>Denis</dc:creator>
      <dc:date>2012-11-23T14:19:25Z</dc:date>
    </item>
    <item>
      <title>Re: datalines</title>
      <link>https://communities.sas.com/t5/SAS-Programming/datalines/m-p/78632#M17005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;STRONG style="color: navy; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;All I know about EG is that it will wrap something around the code you wrote, &lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;STRONG style="color: navy; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;Whether or how it would affect the intended results, I can’t really comment on.&amp;nbsp; However, proc import aside, the following approach is considered more robust, given that 1.) Your maximum length is 20 2.) List input. Both methods will stop reading when 1) encountering delimiter, here is the default ‘blank’, 2) reaching maximum length you defined.&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;STRONG style="color: navy; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: green; background: white;"&gt;/* use colon*/&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;STRONG style="color: navy; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;data&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; result;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;input&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; (a b) (:&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: teal; background: white;"&gt;$20.&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;); ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;datalines&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: #FFFFC0;"&gt;1234 reason&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: #FFFFC0;"&gt;12345 reason_flag&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: #FFFFC0;"&gt;1234567 reason_flag&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: #FFFFC0;"&gt;12345678 reason_flag&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: #FFFFC0;"&gt;12345678910 reason_flag&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: green; background: white;"&gt;/*use informat*/&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;STRONG style="color: navy; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;data&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; result;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;informat&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; a b &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: teal; background: white;"&gt;$20.&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;input&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; a b; ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;datalines&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: #FFFFC0;"&gt;1234 reason&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: #FFFFC0;"&gt;12345 reason_flag&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: #FFFFC0;"&gt;1234567 reason_flag&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: #FFFFC0;"&gt;12345678 reason_flag&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: #FFFFC0;"&gt;12345678910 reason_flag&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;Haikuo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Nov 2012 14:33:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/datalines/m-p/78632#M17005</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2012-11-23T14:33:47Z</dc:date>
    </item>
    <item>
      <title>Re: datalines</title>
      <link>https://communities.sas.com/t5/SAS-Programming/datalines/m-p/78633#M17006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To use datalines you have to do all of the copying and pasting, thus potentially introducing error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I, personally, would save the file (from Excel) as a csv and then use the SAS proc import, setting the guessing rows value high enough that it encompasses all of your records.&amp;nbsp; Let it determine the necessary variable lengths.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Nov 2012 14:36:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/datalines/m-p/78633#M17006</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-11-23T14:36:15Z</dc:date>
    </item>
    <item>
      <title>Re: datalines</title>
      <link>https://communities.sas.com/t5/SAS-Programming/datalines/m-p/78634#M17007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai.kuo, your approach gives the same result as mine.&lt;/P&gt;&lt;P&gt;Please, try to copy data to the excel and from the excel back to the SAS.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Nov 2012 14:47:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/datalines/m-p/78634#M17007</guid>
      <dc:creator>Denis</dc:creator>
      <dc:date>2012-11-23T14:47:42Z</dc:date>
    </item>
    <item>
      <title>Re: datalines</title>
      <link>https://communities.sas.com/t5/SAS-Programming/datalines/m-p/78635#M17008</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your problem is caused by TABs.&amp;nbsp; When you copy and paste from excel the fields are tab delimited.&amp;nbsp; How you deal with that is up to you.&amp;nbsp; You could used the INFILE statement option EXPANDTABS or read the file as table delimited DSD DLM='09'x, or something else.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Nov 2012 14:58:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/datalines/m-p/78635#M17008</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2012-11-23T14:58:44Z</dc:date>
    </item>
    <item>
      <title>Re: datalines</title>
      <link>https://communities.sas.com/t5/SAS-Programming/datalines/m-p/78636#M17009</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's exactly what I finally did at the end, but, assume, there should be such kind of built in function to determine maximum length.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Nov 2012 15:11:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/datalines/m-p/78636#M17009</guid>
      <dc:creator>Denis</dc:creator>
      <dc:date>2012-11-23T15:11:53Z</dc:date>
    </item>
    <item>
      <title>Re: datalines</title>
      <link>https://communities.sas.com/t5/SAS-Programming/datalines/m-p/78637#M17010</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This came up with me a few months ago. Enterprise Guide behaves differently from Display Manager; DM will by default consider TABS to be a delimiter in CARDS input, whereas EG won't. Here's a link to the Problem Note.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Personally, I like using the DATALINES with DLM='09'x solution; I've never had a problem with it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tom&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/kb/17/257.html"&gt;http://support.sas.com/kb/17/257.html&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Nov 2012 15:12:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/datalines/m-p/78637#M17010</guid>
      <dc:creator>TomKari</dc:creator>
      <dc:date>2012-11-23T15:12:58Z</dc:date>
    </item>
    <item>
      <title>Re: datalines</title>
      <link>https://communities.sas.com/t5/SAS-Programming/datalines/m-p/78638#M17011</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks!&lt;/P&gt;&lt;P&gt;it works for SAS EG (not for SAS 9)&lt;/P&gt;&lt;P&gt;previously, i tried to define TAB delimiter. (commented)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data result;&lt;/P&gt;&lt;P&gt;/*infile datalines delimiter ='&amp;nbsp;&amp;nbsp; ';*/&lt;/P&gt;&lt;P&gt;infile datalines DLM='09'x;&lt;/P&gt;&lt;P&gt;length a $19. b $19.;&lt;/P&gt;&lt;P&gt;input a$ b$ ;&lt;/P&gt;&lt;P&gt;datalines;&lt;/P&gt;&lt;P&gt;1234 reason&lt;/P&gt;&lt;P&gt;12345 reason_flag&lt;/P&gt;&lt;P&gt;1234567 reason_flag&lt;/P&gt;&lt;P&gt;12345678 reason_flag&lt;/P&gt;&lt;P&gt;12345678910 reason_flag&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But is there somewhere else difference between SAS 9.x and SAS EG then?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Nov 2012 15:16:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/datalines/m-p/78638#M17011</guid>
      <dc:creator>Denis</dc:creator>
      <dc:date>2012-11-23T15:16:15Z</dc:date>
    </item>
  </channel>
</rss>

