<?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: Exclude variable reading in infile statement in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Exclude-variable-reading-in-infile-statement/m-p/180571#M265123</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't know quite what you mean about "write" 100% of the data. If you use something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want (keep= var1 var2);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; infile ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; input ...&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;then only the two variables you want will be written to the dataset as read. Yes the temporary buffer as each line is read contains the variables up to the second one you want (the input statement shouldn't include any variables past the ones you want to reduce the size of the input buffer), but that is ONE record in memory at a time not written to the disk. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 20 Feb 2014 16:22:08 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2014-02-20T16:22:08Z</dc:date>
    <item>
      <title>Exclude variable reading in infile statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exclude-variable-reading-in-infile-statement/m-p/180565#M265117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have an extra-large table (more than 1200 variables and more than 1.7 million records) in CSV format to bring into SAS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I only need 2 variables out of this table.&amp;nbsp; I currently have a data step that will bring in everything and I keep only the 2 required variables.&amp;nbsp; However, it is highly inefficient to read and write 100% of the content when in fact I only need less than 1% of it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way for me to read/write only the required fields and ignore all the other ones?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Feb 2014 13:45:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exclude-variable-reading-in-infile-statement/m-p/180565#M265117</guid>
      <dc:creator>Niala</dc:creator>
      <dc:date>2014-02-20T13:45:49Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude variable reading in infile statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exclude-variable-reading-in-infile-statement/m-p/180566#M265118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One method you might consider is to read fields you are not interested in into a dummy variable.&amp;nbsp; This will "move" the input to the field of interest.&amp;nbsp; Any fields after the last field of interest are of no concern and can be ignored.&amp;nbsp; Consider this example.&lt;/P&gt;&lt;DIV style="font-family: Courier New; font-size: 11pt;"&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;data&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; fields2;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;infile&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;cards&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;dsd&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;length&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; d $&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;1&lt;/STRONG&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;input&lt;/SPAN&gt; &lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;3&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;*d field1 :&lt;/SPAN&gt;&lt;SPAN style="color: #008080; background-color: #ffffff;"&gt;$16.&lt;/SPAN&gt; &lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;2&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;*d field2;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;cards&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffc0;"&gt;one,two,three-three-three,this one,five five,sixsixsix,100,these are,fields,that will,be ignored&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;;;;;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;run&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Feb 2014 14:02:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exclude-variable-reading-in-infile-statement/m-p/180566#M265118</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2014-02-20T14:02:37Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude variable reading in infile statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exclude-variable-reading-in-infile-statement/m-p/180567#M265119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your quick reply,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would still be reading and writing 99.9% of a content I do not need.&amp;nbsp; I'd rather have a solution that would skip reading/writing for these variables.&amp;nbsp; I figure out if I read/write only 0.1% of the file, my processing should be way faster.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Feb 2014 14:35:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exclude-variable-reading-in-infile-statement/m-p/180567#M265119</guid>
      <dc:creator>Niala</dc:creator>
      <dc:date>2014-02-20T14:35:36Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude variable reading in infile statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exclude-variable-reading-in-infile-statement/m-p/180568#M265120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you even look a the program I wrote?&amp;nbsp; It will read very little of the file. And for writing that is only the variables you keep.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Otherwise you will need to give more details.&amp;nbsp; because just saying you only need to read .1% aint' helping.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to tell what you know about the fields you want to read.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Feb 2014 15:00:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exclude-variable-reading-in-infile-statement/m-p/180568#M265120</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2014-02-20T15:00:57Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude variable reading in infile statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exclude-variable-reading-in-infile-statement/m-p/180569#M265121</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here's an untested approach that may be faster.&amp;nbsp; Only testing will tell for sure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want;&lt;/P&gt;&lt;P&gt;&amp;nbsp; infile csvfile lrecl=5000;&lt;/P&gt;&lt;P&gt;&amp;nbsp; input @;&lt;/P&gt;&lt;P&gt;&amp;nbsp; charvar = scan(_infile_, 97, ',', 'M');&lt;/P&gt;&lt;P&gt;&amp;nbsp; numvar = input( scan(_infile_, 1104, ',' 'M'), 8.);&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The example assumes a few things.&amp;nbsp; CHARVAR is the 97th variable reading from left to right, and NUMVAR is the 1104th variable.&amp;nbsp; Also, ALL commas get treated as delimiters.&amp;nbsp; If you have any other commas in the raw data (such as within text strings, for example), this approach won't work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Feb 2014 15:08:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exclude-variable-reading-in-infile-statement/m-p/180569#M265121</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2014-02-20T15:08:13Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude variable reading in infile statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exclude-variable-reading-in-infile-statement/m-p/180570#M265122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV style="font-family: Courier New; font-size: 11pt;"&gt;&lt;SPAN style="color: #ff0000; background-color: #ffffff;"&gt;q&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; or Q&lt;BR /&gt;&lt;BR /&gt;ignores delimiters that are inside of substrings that are enclosed in quotation &lt;/SPAN&gt;&lt;SPAN style="color: #008080; background-color: #ffffff;"&gt;marks.&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV style="font-family: Courier New; font-size: 11pt;"&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;If the value of the string argument contains unmatched quotation marks, then scanning &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV style="font-family: Courier New; font-size: 11pt;"&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;from left to right will produce different words than scanning from right to &lt;/SPAN&gt;&lt;SPAN style="color: #008080; background-color: #ffffff;"&gt;left.&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; &lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Feb 2014 15:32:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exclude-variable-reading-in-infile-statement/m-p/180570#M265122</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2014-02-20T15:32:09Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude variable reading in infile statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exclude-variable-reading-in-infile-statement/m-p/180571#M265123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't know quite what you mean about "write" 100% of the data. If you use something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want (keep= var1 var2);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; infile ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; input ...&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;then only the two variables you want will be written to the dataset as read. Yes the temporary buffer as each line is read contains the variables up to the second one you want (the input statement shouldn't include any variables past the ones you want to reduce the size of the input buffer), but that is ONE record in memory at a time not written to the disk. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Feb 2014 16:22:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exclude-variable-reading-in-infile-statement/m-p/180571#M265123</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2014-02-20T16:22:08Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude variable reading in infile statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exclude-variable-reading-in-infile-statement/m-p/180572#M265124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Data _null_,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your solution.&amp;nbsp; It trimmed the importing process from more than 3 hours to less than 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Feb 2014 13:26:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exclude-variable-reading-in-infile-statement/m-p/180572#M265124</guid>
      <dc:creator>Niala</dc:creator>
      <dc:date>2014-02-26T13:26:41Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude variable reading in infile statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exclude-variable-reading-in-infile-statement/m-p/180573#M265125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That still sounds like a very long time or you must have a very slow computer.&amp;nbsp; Can you show your program? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Feb 2014 14:19:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exclude-variable-reading-in-infile-statement/m-p/180573#M265125</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2014-02-26T14:19:45Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude variable reading in infile statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exclude-variable-reading-in-infile-statement/m-p/180574#M265126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data fields2;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; infile 'O:\RISK.CSV' delimiter = '|' MISSOVER DSD lrecl=32767 firstobs=2;&amp;nbsp;&amp;nbsp; length d $1;&amp;nbsp;&amp;nbsp; input 4*d RECORD_NB :$10. 5*d FICCLBV8_SCORE : $5.;&amp;nbsp;&amp;nbsp; cards; ;;;&amp;nbsp;&amp;nbsp; run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Feb 2014 19:33:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exclude-variable-reading-in-infile-statement/m-p/180574#M265126</guid>
      <dc:creator>Niala</dc:creator>
      <dc:date>2014-02-26T19:33:32Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude variable reading in infile statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exclude-variable-reading-in-infile-statement/m-p/180575#M265127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you are reading from a separate file, you don't need a CARDS; statement.&amp;nbsp; That can be removed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since you are reading the 5th and 11th variable, you won't need to expand LRECL to 32767.&amp;nbsp; You can use the default which, I believe, reads from the first 256 characters on the line.&amp;nbsp; Just remove lrecl=32767 and see what difference that makes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Feb 2014 20:19:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exclude-variable-reading-in-infile-statement/m-p/180575#M265127</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2014-02-26T20:19:34Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude variable reading in infile statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exclude-variable-reading-in-infile-statement/m-p/180576#M265128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Astounding,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It did not change much in terms of processing time.&amp;nbsp; I still have around an hour (give or take 5 minutes) to bring the finle in.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the pointers,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Feb 2014 19:05:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exclude-variable-reading-in-infile-statement/m-p/180576#M265128</guid>
      <dc:creator>Niala</dc:creator>
      <dc:date>2014-02-27T19:05:04Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude variable reading in infile statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exclude-variable-reading-in-infile-statement/m-p/180577#M265129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The last attempt I would suggest is a combination of what I originally suggested plus data_null_'s enhancement.&amp;nbsp; Given that you are using pipe-delimited data, the program would be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data fields2;&lt;/P&gt;&lt;P&gt;infile 'O:\RISK.CSV' firstobs=2;&lt;/P&gt;&lt;P&gt;length record_nb $10 ficclbv8_score $ 5;&lt;/P&gt;&lt;P&gt;input @;&lt;/P&gt;&lt;P&gt;record_nb = scan(_infile_, 5, '|', 'MQ');&lt;/P&gt;&lt;P&gt;ficclbv8_score = scan(_infile_, 11, '|', 'MQ');&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With fingers suitably crossed ...&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Feb 2014 21:24:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exclude-variable-reading-in-infile-statement/m-p/180577#M265129</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2014-02-27T21:24:56Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude variable reading in infile statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exclude-variable-reading-in-infile-statement/m-p/180578#M265130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Astounding,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Processing time is still slightly higher than the original solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your suggestion. &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Mar 2014 14:01:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exclude-variable-reading-in-infile-statement/m-p/180578#M265130</guid>
      <dc:creator>Niala</dc:creator>
      <dc:date>2014-03-03T14:01:01Z</dc:date>
    </item>
  </channel>
</rss>

