COPY Procedure

Example 3: Using PROC COPY to Migrate from a 32-bit to a 64-bit Machine

Features:
PROC COPY statement options::
IN=
OUT=
NOCLONE
SELECT
Other features:

OUTREP=

Details

Use PROC COPY to migrate from a 32-bit to a 64-bit environment. PROC MIGRATE does not support item stores when you migrate from a 32-bit to a 64-bit environment.

Program

libname source 'path\SAS-data-library';
libname target 'path\SAS-data-library'  
    outrep=windows_64;
proc copy in=source out=target NOCLONE;
select dsname;
run;

Program Description

Assign library resources.Use the OUTREP= option when changing from a 32-bit to a 64-bit machine.
libname source 'path\SAS-data-library';
libname target 'path\SAS-data-library'  
    outrep=windows_64;
Copy data set from a 32-bit to a 64-bit machine.
proc copy in=source out=target NOCLONE;
select dsname;
run;