<?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 Read Online SAS File into SAS in SAS Data Management</title>
    <link>https://communities.sas.com/t5/SAS-Data-Management/Read-Online-SAS-File-into-SAS/m-p/203945#M4524</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is as simple as the title, but I can't quite get it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;File name and location:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.unc.edu/~mfunk/dr/v1dot1/sample_data.sas7bdat"&gt;http://www.unc.edu/~mfunk/dr/v1dot1/sample_data.sas7bdat&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this was not an online file, I would be looking to do the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data sample_data;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set '&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.unc.edu/~mfunk/dr/v1dot1/sample_data.sas77bdat;"&gt;http://www.unc.edu/~mfunk/dr/v1dot1/sample_data.sas77bdat&lt;/A&gt;';&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help appreciated - thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;H L&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Jul 2015 17:45:20 GMT</pubDate>
    <dc:creator>H</dc:creator>
    <dc:date>2015-07-15T17:45:20Z</dc:date>
    <item>
      <title>Read Online SAS File into SAS</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Read-Online-SAS-File-into-SAS/m-p/203945#M4524</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is as simple as the title, but I can't quite get it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;File name and location:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.unc.edu/~mfunk/dr/v1dot1/sample_data.sas7bdat"&gt;http://www.unc.edu/~mfunk/dr/v1dot1/sample_data.sas7bdat&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this was not an online file, I would be looking to do the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data sample_data;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set '&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.unc.edu/~mfunk/dr/v1dot1/sample_data.sas77bdat;"&gt;http://www.unc.edu/~mfunk/dr/v1dot1/sample_data.sas77bdat&lt;/A&gt;';&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help appreciated - thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;H L&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jul 2015 17:45:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Read-Online-SAS-File-into-SAS/m-p/203945#M4524</guid>
      <dc:creator>H</dc:creator>
      <dc:date>2015-07-15T17:45:20Z</dc:date>
    </item>
    <item>
      <title>Re: Read Online SAS File into SAS</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Read-Online-SAS-File-into-SAS/m-p/203946#M4525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use &lt;A href="http://support.sas.com/documentation/cdl/en/proc/67916/HTML/default/viewer.htm#n197g47i7j66x9n15xi0gaha8ov6.htm"&gt;Proc HTTP&lt;/A&gt; to get the SAS Data Set and write it directly to the WORK Library. See sample code below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;DIV style="font-family: Courier New; font-size: 11pt;"&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;filename&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; sample &lt;/SPAN&gt;&lt;SPAN style="color: #800080; background-color: #ffffff;"&gt;"%sysfunc(pathname(work))/sample_data.sas7bdat"&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;proc&lt;/STRONG&gt; &lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;http&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV style="font-family: Courier New; font-size: 11pt;"&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;&amp;nbsp; method&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #800080; background-color: #ffffff;"&gt;"get"&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; &lt;BR /&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;url&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;= &lt;/SPAN&gt;&lt;SPAN style="color: #800080; background-color: #ffffff;"&gt;&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.unc.edu/~mfunk/dr/v1dot1/sample_data.sas7bdat"&gt;http://www.unc.edu/~mfunk/dr/v1dot1/sample_data.sas7bdat&lt;/A&gt;&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; &lt;BR /&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;out&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;=sample&lt;BR /&gt;;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;run&lt;/STRONG&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;data&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; new;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;set&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; sample_data;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;run&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jul 2015 20:48:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Read-Online-SAS-File-into-SAS/m-p/203946#M4525</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2015-07-15T20:48:57Z</dc:date>
    </item>
    <item>
      <title>Re: Read Online SAS File into SAS</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Read-Online-SAS-File-into-SAS/m-p/203947#M4526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you that code worked. I got close but could quite get it right.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2015 12:46:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Read-Online-SAS-File-into-SAS/m-p/203947#M4526</guid>
      <dc:creator>H</dc:creator>
      <dc:date>2015-07-16T12:46:31Z</dc:date>
    </item>
  </channel>
</rss>

