<?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: Frequent Overwriting of Temporary Data Sets in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Frequent-Overwriting-of-Temporary-Data-Sets/m-p/939891#M42220</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;What about overwriting using a data set statement? I read here and there that it could cause problems and I should avoid it.&lt;/P&gt;</description>
    <pubDate>Mon, 19 Aug 2024 14:15:29 GMT</pubDate>
    <dc:creator>trevand</dc:creator>
    <dc:date>2024-08-19T14:15:29Z</dc:date>
    <item>
      <title>Frequent Overwriting of Temporary Data Sets</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Frequent-Overwriting-of-Temporary-Data-Sets/m-p/939714#M42214</link>
      <description>&lt;P&gt;Can it be problematic to overwrite temporary data sets? I use multiple data set and proc sql steps to create various variables and the final data set. Proc sql gives a warning if you use the same data recursively. I read here and there that it could be problematic but just wanted to double check and know why it could be problematic?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;data temp;
set temp;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;proc sql;
create table temp as select * from temp;
run;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 17 Aug 2024 00:51:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Frequent-Overwriting-of-Temporary-Data-Sets/m-p/939714#M42214</guid>
      <dc:creator>trevand</dc:creator>
      <dc:date>2024-08-17T00:51:31Z</dc:date>
    </item>
    <item>
      <title>Re: Frequent Overwriting of Temporary Data Sets</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Frequent-Overwriting-of-Temporary-Data-Sets/m-p/939716#M42215</link>
      <description>&lt;P&gt;The biggest problem is that these programs replace the original version of TEMP.&amp;nbsp; If you need it (such as if you kater discover a logic error), you no longer have the original input available.&lt;/P&gt;
&lt;P&gt;Depending on the size of the data sets, you can be running up the bill.&amp;nbsp; Each step needs to read the entire data set and output all the observations.&amp;nbsp; It's easy to get into bad habits, such as using more steps that you actually need.&amp;nbsp; Typically, input and output are much more costly than data manipulation statements.&lt;/P&gt;</description>
      <pubDate>Sat, 17 Aug 2024 01:51:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Frequent-Overwriting-of-Temporary-Data-Sets/m-p/939716#M42215</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2024-08-17T01:51:41Z</dc:date>
    </item>
    <item>
      <title>Re: Frequent Overwriting of Temporary Data Sets</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Frequent-Overwriting-of-Temporary-Data-Sets/m-p/939726#M42217</link>
      <description>&lt;P&gt;Nope. That would not be a problem.&lt;/P&gt;
&lt;P&gt;If you want to get rid of this WARNING info ,you need option "undo_policy=".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data temp;
set sashelp.class;
run;
proc sql  UNDO_POLICY=none;
create table temp as select * from temp;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 17 Aug 2024 07:51:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Frequent-Overwriting-of-Temporary-Data-Sets/m-p/939726#M42217</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2024-08-17T07:51:28Z</dc:date>
    </item>
    <item>
      <title>Re: Frequent Overwriting of Temporary Data Sets</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Frequent-Overwriting-of-Temporary-Data-Sets/m-p/939891#M42220</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;What about overwriting using a data set statement? I read here and there that it could cause problems and I should avoid it.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Aug 2024 14:15:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Frequent-Overwriting-of-Temporary-Data-Sets/m-p/939891#M42220</guid>
      <dc:creator>trevand</dc:creator>
      <dc:date>2024-08-19T14:15:29Z</dc:date>
    </item>
    <item>
      <title>Re: Frequent Overwriting of Temporary Data Sets</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Frequent-Overwriting-of-Temporary-Data-Sets/m-p/939894#M42222</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/466351"&gt;@trevand&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;What about overwriting using a data set statement? I read here and there that it could cause problems and I should avoid it.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/4954"&gt;@Astounding&lt;/a&gt;&amp;nbsp;already explained this.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Aug 2024 14:25:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Frequent-Overwriting-of-Temporary-Data-Sets/m-p/939894#M42222</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-08-19T14:25:02Z</dc:date>
    </item>
    <item>
      <title>Re: Frequent Overwriting of Temporary Data Sets</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Frequent-Overwriting-of-Temporary-Data-Sets/m-p/940039#M42229</link>
      <description>If you are using a data step statement, that WARNING info would not appeared.&lt;BR /&gt;They are doing the same thing I think.</description>
      <pubDate>Tue, 20 Aug 2024 01:47:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Frequent-Overwriting-of-Temporary-Data-Sets/m-p/940039#M42229</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2024-08-20T01:47:04Z</dc:date>
    </item>
  </channel>
</rss>

