<?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: read sas7bdat file with SAS9.4 in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/read-sas7bdat-file-with-SAS9-4/m-p/857142#M338653</link>
    <description>&lt;P&gt;Or you go the library way:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname in "c:\project";

data want;
set in.population;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This assumes that your SAS is in fact installed and running on your desktop. If you use SAS on a server with SAS Studio or Enterprise Guide, you have to upload the file to the server first.&lt;/P&gt;</description>
    <pubDate>Sat, 04 Feb 2023 06:59:01 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2023-02-04T06:59:01Z</dc:date>
    <item>
      <title>read sas7bdat file with SAS9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/read-sas7bdat-file-with-SAS9-4/m-p/857127#M338646</link>
      <description>&lt;P&gt;This is the simplest possible question.&lt;/P&gt;&lt;P&gt;I have a file named "population.sas7bdat" at C:\project&lt;/P&gt;&lt;P&gt;How can I read this file on SAS 9.4?&lt;/P&gt;</description>
      <pubDate>Sat, 04 Feb 2023 00:22:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/read-sas7bdat-file-with-SAS9-4/m-p/857127#M338646</guid>
      <dc:creator>Lemond2022</dc:creator>
      <dc:date>2023-02-04T00:22:09Z</dc:date>
    </item>
    <item>
      <title>Re: read sas7bdat file with SAS9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/read-sas7bdat-file-with-SAS9-4/m-p/857129#M338648</link>
      <description>&lt;P&gt;A sas7bdat file is what is called a SAS dataset. The most direct way of reading this into a temporary dataset is like this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data Want; * Reads the dataset into a temporary dataset called Want.;
  set 'c:\UK\population.sas7bdat';
run;

* Prints the first 10 rows in the dataset;
proc print data = 'c:\UK\population.sas7bdat' (obs = 10);
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 04 Feb 2023 00:23:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/read-sas7bdat-file-with-SAS9-4/m-p/857129#M338648</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2023-02-04T00:23:09Z</dc:date>
    </item>
    <item>
      <title>Re: read sas7bdat file with SAS9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/read-sas7bdat-file-with-SAS9-4/m-p/857142#M338653</link>
      <description>&lt;P&gt;Or you go the library way:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname in "c:\project";

data want;
set in.population;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This assumes that your SAS is in fact installed and running on your desktop. If you use SAS on a server with SAS Studio or Enterprise Guide, you have to upload the file to the server first.&lt;/P&gt;</description>
      <pubDate>Sat, 04 Feb 2023 06:59:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/read-sas7bdat-file-with-SAS9-4/m-p/857142#M338653</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2023-02-04T06:59:01Z</dc:date>
    </item>
  </channel>
</rss>

