<?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: Cannot load more than 43 observations with proc http using sas ondemand. in SAS Studio</title>
    <link>https://communities.sas.com/t5/SAS-Studio/Cannot-load-more-than-43-observations-with-proc-http-using-sas/m-p/868727#M10896</link>
    <description>This is not the case when using SAS on machines that have it installed.  Do you figure it is a location problem since our local machines are on a vpn located in Melbourne?&lt;BR /&gt;Where does the SAS ondemand login from?&lt;BR /&gt;&lt;BR /&gt;Thanks, Joe &lt;BR /&gt;</description>
    <pubDate>Sun, 09 Apr 2023 00:37:30 GMT</pubDate>
    <dc:creator>jhirschb</dc:creator>
    <dc:date>2023-04-09T00:37:30Z</dc:date>
    <item>
      <title>Cannot load more than 43 observations with proc http using sas ondemand.</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Cannot-load-more-than-43-observations-with-proc-http-using-sas/m-p/868675#M10893</link>
      <description>&lt;P&gt;The code below only loads 43 lines of the web-site data to scrape.&lt;/P&gt;
&lt;PRE&gt;filename output temp;  * Setup a scratch file ; &lt;BR /&gt;&lt;BR /&gt;%Let sub = Airport%20West;&lt;BR /&gt;&lt;BR /&gt;	proc http url="http://reiv.com.au/market-insights/suburb/&amp;amp;sub" method="get"&lt;BR /&gt;		out=output;&lt;BR /&gt;	run;&lt;BR /&gt;*&lt;BR /&gt;	Create a data set called first with one variable for the contents of the &lt;BR /&gt;	webpage called value&lt;BR /&gt;;&lt;BR /&gt;	data first;&lt;BR /&gt;		length suburb $ 20;&lt;BR /&gt;		suburb = "&amp;amp;sub";&lt;BR /&gt;		suburb = tranwrd(suburb, "%20", " ");&lt;BR /&gt;		length value $30000;&lt;BR /&gt;		infile output _infile_ = line;&lt;BR /&gt;		input @1 value $30000.;&lt;BR /&gt;		linenum = _n_;&lt;BR /&gt;		output;&lt;BR /&gt;	label &lt;BR /&gt;		value = webpage code &lt;BR /&gt;		suburb = "Name of suburb with %20 replaced by space"&lt;BR /&gt;		linenum = Line number of code;&lt;BR /&gt;	run;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp; How do I get it to set aside sufficient space for up to 1000 lines of code from this website?&lt;/P&gt;
&lt;P&gt;Thanks,&amp;nbsp; Joe&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 08 Apr 2023 04:16:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Cannot-load-more-than-43-observations-with-proc-http-using-sas/m-p/868675#M10893</guid>
      <dc:creator>jhirschb</dc:creator>
      <dc:date>2023-04-08T04:16:28Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot load more than 43 observations with proc http using sas ondemand.</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Cannot-load-more-than-43-observations-with-proc-http-using-sas/m-p/868693#M10894</link>
      <description>&lt;P&gt;You get the whole HTML content (the last observation contains the &amp;lt;/html&amp;gt; tag), and it seems what you get is a script supposed to actually fetch the data, something I don't know if it's doable with PROC HTTP.&lt;/P&gt;</description>
      <pubDate>Sat, 08 Apr 2023 11:58:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Cannot-load-more-than-43-observations-with-proc-http-using-sas/m-p/868693#M10894</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2023-04-08T11:58:19Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot load more than 43 observations with proc http using sas ondemand.</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Cannot-load-more-than-43-observations-with-proc-http-using-sas/m-p/868694#M10895</link>
      <description>&lt;P&gt;After trying the URL in Safari, you first get one of those "I am not a robot" pages, and after verification are routed to the actual data.&lt;/P&gt;
&lt;P&gt;You should get in touch with the operators of the website, if they provide a dedicated download method for their data.&lt;/P&gt;</description>
      <pubDate>Sat, 08 Apr 2023 12:13:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Cannot-load-more-than-43-observations-with-proc-http-using-sas/m-p/868694#M10895</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2023-04-08T12:13:52Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot load more than 43 observations with proc http using sas ondemand.</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Cannot-load-more-than-43-observations-with-proc-http-using-sas/m-p/868727#M10896</link>
      <description>This is not the case when using SAS on machines that have it installed.  Do you figure it is a location problem since our local machines are on a vpn located in Melbourne?&lt;BR /&gt;Where does the SAS ondemand login from?&lt;BR /&gt;&lt;BR /&gt;Thanks, Joe &lt;BR /&gt;</description>
      <pubDate>Sun, 09 Apr 2023 00:37:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Cannot-load-more-than-43-observations-with-proc-http-using-sas/m-p/868727#M10896</guid>
      <dc:creator>jhirschb</dc:creator>
      <dc:date>2023-04-09T00:37:30Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot load more than 43 observations with proc http using sas ondemand.</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Cannot-load-more-than-43-observations-with-proc-http-using-sas/m-p/868739#M10897</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/22141"&gt;@jhirschb&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;This is not the case when using SAS on machines that have it installed.&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Once you visited the page "manually" from such a computer, the "I am not a robot" script is circumvented because the necessary cookie is present.&lt;/P&gt;
&lt;P&gt;Visit the page from your PC, save the HTML, then upload it to On Demand, so you can play around with it there.&lt;/P&gt;</description>
      <pubDate>Sun, 09 Apr 2023 07:03:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Cannot-load-more-than-43-observations-with-proc-http-using-sas/m-p/868739#M10897</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2023-04-09T07:03:01Z</dc:date>
    </item>
  </channel>
</rss>

