<?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: how to keep data set name more than 32 letters and also how write variable name more than 32 let in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/how-to-keep-data-set-name-more-than-32-letters-and-also-how/m-p/556263#M154960</link>
    <description>&lt;P&gt;think about it before you make the file names, make that mean something rather than tell a story.&lt;/P&gt;
&lt;P&gt;In the years past you only got a length of 8.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;what are you going to do when&amp;nbsp; 256 length is not enough&lt;/P&gt;
&lt;P&gt;Sloppy kids.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 05 May 2019 13:49:49 GMT</pubDate>
    <dc:creator>VDD</dc:creator>
    <dc:date>2019-05-05T13:49:49Z</dc:date>
    <item>
      <title>how to keep data set name more than 32 letters and also how write variable name more than 32 letters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-keep-data-set-name-more-than-32-letters-and-also-how/m-p/556240#M154954</link>
      <description>&lt;P&gt;data gggggggggggggggggggggggggg_yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy ;&lt;BR /&gt;set sashelp.class ;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;if i run above program i am getting error so how keep 32 characters length.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;kindly help me.&lt;/P&gt;</description>
      <pubDate>Sun, 05 May 2019 08:16:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-keep-data-set-name-more-than-32-letters-and-also-how/m-p/556240#M154954</guid>
      <dc:creator>thanikondharish</dc:creator>
      <dc:date>2019-05-05T08:16:18Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep data set name more than 32 letters and also how write variable name more than 32 let</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-keep-data-set-name-more-than-32-letters-and-also-how/m-p/556241#M154955</link>
      <description>Say what now?&lt;BR /&gt;I mean, just reduce the name to 32 chars...?</description>
      <pubDate>Sun, 05 May 2019 08:28:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-keep-data-set-name-more-than-32-letters-and-also-how/m-p/556241#M154955</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2019-05-05T08:28:35Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep data set name more than 32 letters and also how write variable name more than 32 let</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-keep-data-set-name-more-than-32-letters-and-also-how/m-p/556255#M154957</link>
      <description>&lt;P&gt;Because that is a hard limit in SAS. Read the documentation.&lt;/P&gt;</description>
      <pubDate>Sun, 05 May 2019 12:10:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-keep-data-set-name-more-than-32-letters-and-also-how/m-p/556255#M154957</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-05-05T12:10:43Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep data set name more than 32 letters and also how write variable name more than 32 let</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-keep-data-set-name-more-than-32-letters-and-also-how/m-p/556261#M154959</link>
      <description>&lt;P&gt;Put the intended long names into labels and keep the actual names &amp;lt;=32 characters long.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test(label='This dataset label could be up to 256 characters long!');
a=1;
label a='This variable label could be up to 256 characters long!';
run;

proc contents data=test;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 05 May 2019 13:00:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-keep-data-set-name-more-than-32-letters-and-also-how/m-p/556261#M154959</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2019-05-05T13:00:57Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep data set name more than 32 letters and also how write variable name more than 32 let</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-keep-data-set-name-more-than-32-letters-and-also-how/m-p/556263#M154960</link>
      <description>&lt;P&gt;think about it before you make the file names, make that mean something rather than tell a story.&lt;/P&gt;
&lt;P&gt;In the years past you only got a length of 8.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;what are you going to do when&amp;nbsp; 256 length is not enough&lt;/P&gt;
&lt;P&gt;Sloppy kids.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 05 May 2019 13:49:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-keep-data-set-name-more-than-32-letters-and-also-how/m-p/556263#M154960</guid>
      <dc:creator>VDD</dc:creator>
      <dc:date>2019-05-05T13:49:49Z</dc:date>
    </item>
  </channel>
</rss>

