Chapter Contents |
Previous |
Next |
SAS/CONNECT User's Guide |
Purpose |
Programs |
Example 8.1: Using the EXTENDSN= and V6TRANSPORT Options in the PROC UPLOAD Statement |
This example uploads the data set A in the directory WORK on the local host to the directory REMOTE on the remote host. The V6TRANSPORT option causes the short numerics to be promoted; therefore EXTENDSN=NO must be specified to override this default, so that numerics will not be promoted.
proc upload data=a out=remote v6transport extendsn=no; run;
Example 8.2: Using the EXTENDSN= Option in the PROC DOWNLOAD Statement |
This example downloads the catalog SCAT in the directory REMOTE on the remote host to the directory WORK on the local host. By default, catalog transfers promote the length of short numerics within SCREEN entry types. This behavior can be overridden by specifying EXTENDSN=NO on the catalog transfer download. The EXTENDSN= option is supported by catalog transfer of SCREEN entry types only.
Note: The V6TRANSPORT option is
not needed when transferring a catalog.
proc download incat=remote.scat outcat=work.scat extendsn=no; run;
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.