Usage Note 22717: Do you have any examples of creating a transport file with PROC CPORT to move catalogs or a combination of catalogs and data sets from UNIX to another system, either a noncompatible UNIX operating system or another foreign destination operating system?
In the following examples, we are assuming you are moving SAS files
from a lower release to a higher release.
- Example 1:
- In this example, we are copying all the catalogs in the directory referenced by the libref SASLIB into the transport file GONEALLCATS.DAT.
libname saslib '~userid/myproj';
proc cport library=saslib file='goneallcats.dat' memtype=catalog;
run;
- Example 2:
- In this example, we are copying all the catalogs and data sets in the directory referenced by the libref SASLIB into the transport file GONEALL.DAT.
libname saslib '~userid/myproj';
proc cport library=saslib file='goneall.dat' ;
run;
- Example 3:
- In this example, we are copying one catalog, SELLIST, in the directory referenced by the libref SASLIB into the transport file GONECAT.DAT.
libname saslib '~userid/myproj';
proc cport catalog=saslib.sellist file='gonecat.dat' ;
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 | |
| 64-bit Enabled AIX | n/a | |
| All | 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.
| Type: | Usage Note |
| Priority: | low |
| Topic: | Data Management ==> Administration ==> Migration
|
| Date Modified: | 2008-01-28 13:55:10 |
| Date Created: | 2002-12-16 10:56:50 |