This example shows how
simple it is to move a SAS data set from one operating environment
to another and to process the file in the new environment without
any conversion steps.
First, the SAS data
set is moved, using FTP, from an HP-UX UNIX environment to a Windows
PC.
C:\>ftp my.unix.node.com
FTP>binary
FTP>get unxdata.sas7bdat
FTP>quit
Then, using CEDA, SAS
automatically recognizes the file's UNIX data representation and translates
it to the data representation for the Windows environment. The log
output displays a message that the file is being processed using CEDA.
libname unx '.';
proc print data=unx.unxdata;
run;
Log Output from Processing a File
Note: Data file HEALTH.GRADES.DATA is in a format that is native to another
host, or the file encoding does not match the session encoding. Cross
Environment Data Access will be used, which might require additional CPU
resources and might reduce performance.