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

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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