<?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: import SAS7DAT file into SAS OnDemand Studio in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/import-SAS7DAT-file-into-SAS-OnDemand-Studio/m-p/865501#M38246</link>
    <description>&lt;P&gt;SAS UE is no longer supported.&amp;nbsp; You can use SAS ODA which is also using the SAS/Studio interface but instead of running SAS in a virtual machine on your computer it runs SAS on machine that SAS hosts.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To upload a file using the SAS/Studio interface you just need to click on the folder where you want to write the file and click on the UPLOAD icon.&amp;nbsp; You can then browse to the file you want to upload and select it.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Tom_0-1679419069672.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/81830iA2795ADDB45B46A1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Tom_0-1679419069672.png" alt="Tom_0-1679419069672.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Once you have a sas7bdat file on the machine where SAS is running you can either use the file directly by referencing it using a quoted physical name. Or create a libref pointing to the folder where it lives and using a two level name.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So if you uploaded a file name mydata.sas7bdat to your home directory you could use either of these programs to see the content information of the dataset.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc contents data="~/mydata.sas7bdat"; run;

libname mylib "~";
proc contents data=mylib.mydata; run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Remember that the SAS session you are using with ODA is running on UNIX.&amp;nbsp; So the name of file that is the SAS dataset must be in all lowercase letters.&amp;nbsp; So not MyData.sas7bdat or mydata.SAS7BDAT, but only mydata.sas7bdat.&lt;/P&gt;</description>
    <pubDate>Tue, 21 Mar 2023 17:18:57 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2023-03-21T17:18:57Z</dc:date>
    <item>
      <title>import SAS7DAT file into SAS OnDemand Studio</title>
      <link>https://communities.sas.com/t5/New-SAS-User/import-SAS7DAT-file-into-SAS-OnDemand-Studio/m-p/865480#M38245</link>
      <description>&lt;P class=""&gt;Hi fellow,&lt;/P&gt;
&lt;P class=""&gt;I've been looking on the web for the entire day about how to use .sas7bdat sas tables with sas studio university edition. I've tried doing the libname thing and it dosent work. However, I keep reading everywhere that I need to upload it onto the server in order to read it in because it can't read it off the local machine. I have no idea how to do this and its starting to infuriate me.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Mar 2023 17:10:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/import-SAS7DAT-file-into-SAS-OnDemand-Studio/m-p/865480#M38245</guid>
      <dc:creator>kreansanm</dc:creator>
      <dc:date>2023-03-21T17:10:01Z</dc:date>
    </item>
    <item>
      <title>Re: import SAS7DAT file into SAS OnDemand Studio</title>
      <link>https://communities.sas.com/t5/New-SAS-User/import-SAS7DAT-file-into-SAS-OnDemand-Studio/m-p/865501#M38246</link>
      <description>&lt;P&gt;SAS UE is no longer supported.&amp;nbsp; You can use SAS ODA which is also using the SAS/Studio interface but instead of running SAS in a virtual machine on your computer it runs SAS on machine that SAS hosts.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To upload a file using the SAS/Studio interface you just need to click on the folder where you want to write the file and click on the UPLOAD icon.&amp;nbsp; You can then browse to the file you want to upload and select it.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Tom_0-1679419069672.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/81830iA2795ADDB45B46A1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Tom_0-1679419069672.png" alt="Tom_0-1679419069672.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Once you have a sas7bdat file on the machine where SAS is running you can either use the file directly by referencing it using a quoted physical name. Or create a libref pointing to the folder where it lives and using a two level name.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So if you uploaded a file name mydata.sas7bdat to your home directory you could use either of these programs to see the content information of the dataset.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc contents data="~/mydata.sas7bdat"; run;

libname mylib "~";
proc contents data=mylib.mydata; run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Remember that the SAS session you are using with ODA is running on UNIX.&amp;nbsp; So the name of file that is the SAS dataset must be in all lowercase letters.&amp;nbsp; So not MyData.sas7bdat or mydata.SAS7BDAT, but only mydata.sas7bdat.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Mar 2023 17:18:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/import-SAS7DAT-file-into-SAS-OnDemand-Studio/m-p/865501#M38246</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-03-21T17:18:57Z</dc:date>
    </item>
  </channel>
</rss>

