<?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 save work file in a permanent folder in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/save-work-file-in-a-permanent-folder/m-p/46346#M12339</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks, will try this out definitely. mei&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 Mar 2012 12:18:56 GMT</pubDate>
    <dc:creator>mei</dc:creator>
    <dc:date>2012-03-28T12:18:56Z</dc:date>
    <item>
      <title>save work file in a permanent folder</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/save-work-file-in-a-permanent-folder/m-p/46339#M12332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a very big workfile in the work folder. as files saved in work folder is temporary, is there any best and fastest method to save the work file to another folder for permanent storage.&lt;/P&gt;&lt;P&gt;(other than the following data step:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data output.permanet;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set work.want;&lt;/P&gt;&lt;P&gt;run; )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2012 07:15:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/save-work-file-in-a-permanent-folder/m-p/46339#M12332</guid>
      <dc:creator>mei</dc:creator>
      <dc:date>2012-03-28T07:15:02Z</dc:date>
    </item>
    <item>
      <title>save work file in a permanent folder</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/save-work-file-in-a-permanent-folder/m-p/46340#M12333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Usa another library to instead of WORK library. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;libname x v9 'c:\temp\';
options user=x;
data class;
 set sashelp.class;
run;

&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ksharp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2012 07:33:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/save-work-file-in-a-permanent-folder/m-p/46340#M12333</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2012-03-28T07:33:05Z</dc:date>
    </item>
    <item>
      <title>save work file in a permanent folder</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/save-work-file-in-a-permanent-folder/m-p/46341#M12334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this is the error log:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; libname output v9 'D:\MeiYee Folder\My Documents\PhD\Data Analysis\output';&lt;/P&gt;&lt;P&gt;NOTE: Libname OUTPUT refers to the same physical library as USER.&lt;/P&gt;&lt;P&gt;NOTE: Libref OUTPUT was successfully assigned as follows:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Engine:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; V9&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Physical Name: D:\MeiYee Folder\My Documents\PhD\Data Analysis\output&lt;/P&gt;&lt;P&gt;300&amp;nbsp; options user=output;&lt;/P&gt;&lt;P&gt;301&amp;nbsp; data want3;&lt;/P&gt;&lt;P&gt;302&amp;nbsp;&amp;nbsp; set sashelp.want3;&lt;/P&gt;&lt;P&gt;ERROR: File SASHELP.WANT3.DATA does not exist.&lt;/P&gt;&lt;P&gt;303&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;WARNING: The data set OUTPUT.WANT3 may be incomplete.&amp;nbsp; When this step was stopped there were 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; observations and 0 variables.&lt;/P&gt;&lt;P&gt;WARNING: Data set OUTPUT.WANT3 was not replaced because this step was stopped.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; real time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.02 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cpu time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.00 seconds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; can you help?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2012 07:44:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/save-work-file-in-a-permanent-folder/m-p/46341#M12334</guid>
      <dc:creator>mei</dc:creator>
      <dc:date>2012-03-28T07:44:46Z</dc:date>
    </item>
    <item>
      <title>save work file in a permanent folder</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/save-work-file-in-a-permanent-folder/m-p/46342#M12335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; sashelp is automatic library which is assigned in sas session.you have to use your own library&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2012 07:48:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/save-work-file-in-a-permanent-folder/m-p/46342#M12335</guid>
      <dc:creator>manojinpec</dc:creator>
      <dc:date>2012-03-28T07:48:00Z</dc:date>
    </item>
    <item>
      <title>save work file in a permanent folder</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/save-work-file-in-a-permanent-folder/m-p/46343#M12336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As manojinpec said. SASHELP is a default library. You need define yourself library.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2012 08:38:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/save-work-file-in-a-permanent-folder/m-p/46343#M12336</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2012-03-28T08:38:07Z</dc:date>
    </item>
    <item>
      <title>save work file in a permanent folder</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/save-work-file-in-a-permanent-folder/m-p/46344#M12337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i open the work file and click save as 'new file name' in the new library name/directory...this also work right?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2012 08:40:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/save-work-file-in-a-permanent-folder/m-p/46344#M12337</guid>
      <dc:creator>mei</dc:creator>
      <dc:date>2012-03-28T08:40:54Z</dc:date>
    </item>
    <item>
      <title>save work file in a permanent folder</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/save-work-file-in-a-permanent-folder/m-p/46345#M12338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Yes it would work.But if you want to do in programme you need to do as suggested.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2012 09:35:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/save-work-file-in-a-permanent-folder/m-p/46345#M12338</guid>
      <dc:creator>manojinpec</dc:creator>
      <dc:date>2012-03-28T09:35:28Z</dc:date>
    </item>
    <item>
      <title>save work file in a permanent folder</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/save-work-file-in-a-permanent-folder/m-p/46346#M12339</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks, will try this out definitely. mei&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2012 12:18:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/save-work-file-in-a-permanent-folder/m-p/46346#M12339</guid>
      <dc:creator>mei</dc:creator>
      <dc:date>2012-03-28T12:18:56Z</dc:date>
    </item>
    <item>
      <title>save work file in a permanent folder</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/save-work-file-in-a-permanent-folder/m-p/46347#M12340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could use PROC COPY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc copy inlib=work outlib=output ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; select want;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will copy WORK.WANT to OUTPUT.WANT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2012 12:33:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/save-work-file-in-a-permanent-folder/m-p/46347#M12340</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2012-03-28T12:33:21Z</dc:date>
    </item>
  </channel>
</rss>

