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

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

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
  • 680 views
  • 0 likes
  • 2 in conversation