<?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: RECFM LRECL in SAS Data Science</title>
    <link>https://communities.sas.com/t5/SAS-Data-Science/RECFM-LRECL/m-p/128341#M1079</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just use these on the mainframe.&amp;nbsp; It seems they aren't required as much with PC SAS, etc and I try to stay away from the mainframe when I can &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>Tue, 16 Jul 2013 20:57:42 GMT</pubDate>
    <dc:creator>Marilyn</dc:creator>
    <dc:date>2013-07-16T20:57:42Z</dc:date>
    <item>
      <title>RECFM LRECL</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/RECFM-LRECL/m-p/128337#M1075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello SAS users,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can somebody please shed light on these two keywords: RECFM and LRECL&lt;/P&gt;&lt;P&gt;The SAS log has following note&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Note: The infile '...\sample.dat' is:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;File Name = ...\sample.dat&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;RECFM=V LRECL=256&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Seems like it is something to do with Record, however what is V?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thankfully,&lt;/P&gt;&lt;P&gt;Dhanashree Gadkari&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 Jul 2013 22:58:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/RECFM-LRECL/m-p/128337#M1075</guid>
      <dc:creator>noobs</dc:creator>
      <dc:date>2013-07-07T22:58:08Z</dc:date>
    </item>
    <item>
      <title>Re: RECFM LRECL</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/RECFM-LRECL/m-p/128338#M1076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;LRECL is Logical RECord length.&amp;nbsp; How many characters in a line.&lt;/P&gt;&lt;P&gt;RECFM is RECord ForMat.&amp;nbsp; &lt;/P&gt;&lt;P&gt;V is Variable which means that the lines are not all the same length.&amp;nbsp; End of line is determined by special characters. Normally a LineFeed (0A base 16) on Unix machines and CarriageReturn and LineFeed (0D0A base 16) on Windows machines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Read up on JCL to see where these terms come from.&amp;nbsp; &lt;A href="http://en.wikipedia.org/wiki/Job_Control_Language" title="http://en.wikipedia.org/wiki/Job_Control_Language"&gt;Job Control Language - Wikipedia, the free encyclopedia&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jul 2013 01:54:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/RECFM-LRECL/m-p/128338#M1076</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2013-07-08T01:54:21Z</dc:date>
    </item>
    <item>
      <title>Re: RECFM LRECL</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/RECFM-LRECL/m-p/128339#M1077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Got it, well explained.&lt;/P&gt;&lt;P&gt;Do fixed length records get assigned F for RECFM? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jul 2013 11:31:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/RECFM-LRECL/m-p/128339#M1077</guid>
      <dc:creator>noobs</dc:creator>
      <dc:date>2013-07-08T11:31:40Z</dc:date>
    </item>
    <item>
      <title>Re: RECFM LRECL</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/RECFM-LRECL/m-p/128340#M1078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;LRECL is logical record length.It denotes the length of input buffer which is created in datastep processing. Data flows from input buffer to pdv to your dataset in datastep processing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Input buffer holds record of the text file that is being read in a datastep. By default the length if input buffer is 256 bytes (which means if you are reading a file which has more than 256 bytes in a row then you have to increase this limit else SAS will not be able to read complete data from that row).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RECFM can be fixed or it can be Variable. A file's record format is said to be fixed if you can not write more than specified byte in a row. Where as in files like notepad or wordpad you can write as much data in a row as you want. This makes .txt or .dat files as Variable length file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jul 2013 13:05:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/RECFM-LRECL/m-p/128340#M1078</guid>
      <dc:creator>pali</dc:creator>
      <dc:date>2013-07-08T13:05:15Z</dc:date>
    </item>
    <item>
      <title>Re: RECFM LRECL</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/RECFM-LRECL/m-p/128341#M1079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just use these on the mainframe.&amp;nbsp; It seems they aren't required as much with PC SAS, etc and I try to stay away from the mainframe when I can &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>Tue, 16 Jul 2013 20:57:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/RECFM-LRECL/m-p/128341#M1079</guid>
      <dc:creator>Marilyn</dc:creator>
      <dc:date>2013-07-16T20:57:42Z</dc:date>
    </item>
  </channel>
</rss>

