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;

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!

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