Usage Note 24454: Using SAS® 9 for Windows to directly read a file that is created by SAS® 9 for UNIX
You can use SAS 9 for Windows to directly read a file that is created by SAS 9 for UNIX. Beginning with SAS 7 and later, you can read SAS data sets without converting them between UNIX and Windows. A translation is done behind the scenes, so you could experience performance delays. Also, you will not have update access, and indexes are not supported. If you cannot live with these restrictions, you should create a SAS 9 Windows file from the UNIX file.
PROC COPY with the NOCLONE option copies the UNIX data file to the native
Windows format and removes the restrictions of a foreign file. For example:
libname old 'path';
libname new 'path';
proc copy noclone in=old out=new;
select unix-dsname; /* one-level name */
run;
Operating System and Release Information
| SAS System | Base SAS | OpenVMS Alpha | n/a | |
| ABI+ for Intel Architecture | n/a | |
| Linux on Itanium | n/a | |
| Tru64 UNIX | n/a | |
| Linux | n/a | |
| 64-bit Enabled Solaris | n/a | |
| Solaris | n/a | |
| HP-UX | n/a | |
| HP-UX IPF | n/a | |
| 64-bit Enabled HP-UX | n/a | |
| Windows | n/a | |
| 64-bit Enabled AIX | n/a | |
| AIX | n/a | |
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
You can use SAS® 9 for Windows to directly read a file that is created by SAS® 9 for UNIX.
| Type: | Usage Note |
| Priority: | low |
| Topic: | SAS Reference ==> Procedures ==> DATASETS Data Management ==> Administration ==> Migration SAS Reference ==> Procedures ==> COPY SAS Reference ==> Procedures ==> CONVERT
|
| Date Modified: | 2009-10-05 10:34:10 |
| Date Created: | 2005-11-08 18:33:17 |