BookmarkSubscribeRSS Feed
mvk_sas
Calcite | Level 5

Hi All,

I need your  help to overcome this issue

Lets say i have text file in unix server A  and I was trying to read that file into other server where my actual code is located to create SAS dataset.

Ex

sample. txt is on unix server  (host) 'abcd01'

I am  running my sas code which converts this  txt file as my dataset. (host=abcd01)

I did use this code below but no luck (I assume my servers use sftp connection)

filename myfile ftp 'data' cd='/u/kudzu/mydata'

  user='guest' host='hp720.hp.sas.com'

  recfm=v prompt;

data mydata / view=mydata; /* Create a view */

  infile myfile;

  input x $10. y 4.;

run;

proc print data=mydata; /* Print the data */

run;

NOTE : I dont want copy the files using ftp just wanted to read the file and create the dataset.

Any help is really appreciated!!

thanks

MVK

1 REPLY 1
LinusH
Tourmaline | Level 20

If you need to use sftp, you have to specify that as connection method:

FILENAME Statement, SFTP Access Method :: SAS(R) 9.3 Statements: Reference

Data never sleeps

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