BookmarkSubscribeRSS Feed
Mike_Davis
Fluorite | Level 6

Hello everyone,

I want ask SAS to read content of a website,at first I use the example as below:

filename foo url

    'http://support.sas.com/techsup/service_intro.html';

    

data _null_;

   infile foo length=len;

   input record $varying200. len;

   put record $varying200. len;

   if _n_=15 then stop;

run;

this is an example of SAS,but when I run the code ,error happened as the log show:

ERROR: Hostname support.sas.com not found.

please advise.

Thanks!

Mike

1 REPLY 1
MikeZdeb
Rhodochrosite | Level 12

hi ... that's not a valid URL on the SAS web site

if you try that URL in a browser you get the attached error

valid URLs work, for example ...

filename foo url 'http://support.sas.com/techsup/support.html'  ;

    

data _null_;

infile foo;

input;

put _infile_;

if _n_ eq 15 then stop;

run;


notfound.png
What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1069 views
  • 0 likes
  • 2 in conversation