BookmarkSubscribeRSS Feed
bpang
Calcite | Level 5

Hi 

I want to know that if it is possible to export a sas table or txt file from enterprise guide to a FTP location. 

2 REPLIES 2
ballardw
Super User

Yes.

 

The FILENAME statement can create a connection to an FTP site as the destination of any SAS procedure or process that writes to a fileref.

 

You may not want to use a native SAS file format as there are issues about cross operating system compatibility but Proc CPORT creates files intended for that purpose and the companion Proc Cimport will recreate SAS datasets. Proc Export may be all you need to create txt files though you may have to worry about FTP settings for plain text not binary transfer.

semihascioglu
Calcite | Level 5

Hi,

 

You can use filename statement below.


filename server ftp "/ftp01/ftp_lib/&sasData..TXT" host="XX.XXX.X.XX"
user="my_user" pass="my_pass" ;
data _null_;
infile "/my_out/&sasData..TXT" recfm=n ;
input x $char1. @@;
file server recfm=s ;
put x $char1. @@;
run;

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!
How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 1975 views
  • 0 likes
  • 3 in conversation