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-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 2569 views
  • 0 likes
  • 3 in conversation