<?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 Code to create permanent data set in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Code-to-create-permanent-data-set/m-p/316474#M69161</link>
    <description>&lt;P&gt;DATA step creates a permanent SAS data set?&lt;/P&gt;</description>
    <pubDate>Sat, 03 Dec 2016 10:05:20 GMT</pubDate>
    <dc:creator>Tap222</dc:creator>
    <dc:date>2016-12-03T10:05:20Z</dc:date>
    <item>
      <title>Code to create permanent data set</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Code-to-create-permanent-data-set/m-p/316474#M69161</link>
      <description>&lt;P&gt;DATA step creates a permanent SAS data set?&lt;/P&gt;</description>
      <pubDate>Sat, 03 Dec 2016 10:05:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Code-to-create-permanent-data-set/m-p/316474#M69161</guid>
      <dc:creator>Tap222</dc:creator>
      <dc:date>2016-12-03T10:05:20Z</dc:date>
    </item>
    <item>
      <title>Re: Code to create permanent data set</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Code-to-create-permanent-data-set/m-p/316475#M69162</link>
      <description>&lt;P&gt;If you use a library other than work, yes.&lt;/P&gt;</description>
      <pubDate>Sat, 03 Dec 2016 10:17:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Code-to-create-permanent-data-set/m-p/316475#M69162</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-12-03T10:17:46Z</dc:date>
    </item>
    <item>
      <title>Re: Code to create permanent data set</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Code-to-create-permanent-data-set/m-p/316491#M69168</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; To illustrated Kurt's point.&lt;/P&gt;
&lt;P&gt;cynthia&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;** temporary data set, will be in WORK library;
** WORK library is "cleared" at the end of every session;
data class;
  set sashelp.class;
  age_in_5_yrs = age + 5;
run;
  
** permanent data set will be in C:\mydata folder;
** and will persist after SAS session ends;
libname perm 'c:\mydata';
data perm.class;
  set sashelp.class;
  age_in_5_yrs = age + 5;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 03 Dec 2016 13:48:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Code-to-create-permanent-data-set/m-p/316491#M69168</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2016-12-03T13:48:43Z</dc:date>
    </item>
  </channel>
</rss>

