BookmarkSubscribeRSS Feed
alam_ather
Calcite | Level 5

 

I am trying to access data from web and as a learning wrote following code into SAS EG:

 

filename seercode URL "https://www.google.com";
data siterecode;
infile seercode truncover;
input @1 bigline $char256.;
run;

 

Unfortunately, encountered following error, can anyone please suggest best way to resolve this issue:

 

NOTE: Unable to connect to host www.google.com. Check validity of host name.
ERROR: Hostname www.google.com not found.
NOTE: The SAS System stopped processing this step because of errors.
WARNING: The data set WORK.SITERECODE may be incomplete. When this step was stopped there were 0
observations and 1 variables.
WARNING: Data set WORK.SITERECODE was not replaced because this step was stopped.
NOTE: DATA statement used (Total process time):
real time 2.46 seconds
cpu time 0.04 seconds

 

 

Thanks

 

2 REPLIES 2
Patrick
Opal | Level 21

Your code works for me with SAS installed locally on my laptop. Could it be that your SAS server where your code gets executed doesn't have Internet access?

BrunoMueller
SAS Super FREQ

You might need a PROXY definition on the FILENAME statement.

 

I would also use the DEBUG option on the FILENAME statement, this might give you more information as well

See https://support.sas.com/documentation/cdl/en/lestmtsref/68024/HTML/default/viewer.htm#p103pi2vrzn6qh... for more details.

 

Bruno

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 2 replies
  • 914 views
  • 0 likes
  • 3 in conversation