Chapter Contents

Previous

Next
SAS/CONNECT User's Guide

Example 1. CEDA: Transferring Data by Using FTP


Purpose

If you have a SAS data file that resides on an HP UNIX system and you want to use it on your Windows PC, you could FTP the file to your PC and reference it from your SAS program. Using CEDA, your data is automatically available for access without any extra steps.


Program

C:\>FTP MY.UNIX.NODE.COM
FTP>BINARY
FTP>GET UNXDATA.SAS7BDAT
FTP>QUIT

LIBNAME UNX '.';
PROC PRINT DATA=UNX.UNXDATA;
RUN;


Chapter Contents

Previous

Next

Top of Page

Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.