<?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 How do I make a work.import file a permanent sas7bdat file. in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/How-do-I-make-a-work-import-file-a-permanent-sas7bdat-file/m-p/887222#M39367</link>
    <description>&lt;P&gt;Please provide a simple example of how I can make a work.import file into a sas7bdat file. In other words I have a dataset in my work library with the default name import. I want to save it as import.sas7bdat.&lt;/P&gt;</description>
    <pubDate>Tue, 01 Aug 2023 01:26:02 GMT</pubDate>
    <dc:creator>yportne1111</dc:creator>
    <dc:date>2023-08-01T01:26:02Z</dc:date>
    <item>
      <title>How do I make a work.import file a permanent sas7bdat file.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-do-I-make-a-work-import-file-a-permanent-sas7bdat-file/m-p/887222#M39367</link>
      <description>&lt;P&gt;Please provide a simple example of how I can make a work.import file into a sas7bdat file. In other words I have a dataset in my work library with the default name import. I want to save it as import.sas7bdat.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2023 01:26:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-do-I-make-a-work-import-file-a-permanent-sas7bdat-file/m-p/887222#M39367</guid>
      <dc:creator>yportne1111</dc:creator>
      <dc:date>2023-08-01T01:26:02Z</dc:date>
    </item>
    <item>
      <title>Re: How do I make a work.import file a permanent sas7bdat file.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-do-I-make-a-work-import-file-a-permanent-sas7bdat-file/m-p/887226#M39368</link>
      <description>&lt;P&gt;This is probably the simplest way:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data '\Myfolder\import';
  set work.import;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;But using a LIBNAME is better:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname MyLib '\Myfolder';

data MyLib.import;
  set work.import;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2023 02:22:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-do-I-make-a-work-import-file-a-permanent-sas7bdat-file/m-p/887226#M39368</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2023-08-01T02:22:31Z</dc:date>
    </item>
    <item>
      <title>Re: How do I make a work.import file a permanent sas7bdat file.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-do-I-make-a-work-import-file-a-permanent-sas7bdat-file/m-p/887335#M39373</link>
      <description>&lt;P&gt;Personally I prefer to "import" directly into the library:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;libname mylib "&amp;lt;some path&amp;gt;";

proc import datafile="&amp;lt;path&amp;gt;filename.ext" 
       out=mylib.mydatasetname
   &amp;lt;other Import options&amp;gt;
run;&lt;/PRE&gt;
&lt;P&gt;If you are using widgets to run the import then if you have the LIBRARY assigned before using the widget you should be able to indicate that library as the destination for the imported data.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2023 15:09:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-do-I-make-a-work-import-file-a-permanent-sas7bdat-file/m-p/887335#M39373</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-08-01T15:09:09Z</dc:date>
    </item>
    <item>
      <title>Re: How do I make a work.import file a permanent sas7bdat file.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-do-I-make-a-work-import-file-a-permanent-sas7bdat-file/m-p/887337#M39374</link>
      <description>Thanks</description>
      <pubDate>Tue, 01 Aug 2023 15:28:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-do-I-make-a-work-import-file-a-permanent-sas7bdat-file/m-p/887337#M39374</guid>
      <dc:creator>yportne1111</dc:creator>
      <dc:date>2023-08-01T15:28:37Z</dc:date>
    </item>
  </channel>
</rss>

