Chapter Contents |
Previous |
Next |
SAS/CONNECT User's Guide |
Purpose |
The data set options must be associated with a specific SAS data set, so they must be used in the DATA= or OUT= options. There are additional restrictions described in The UPLOAD Procedure and The DOWNLOAD Procedure.
This example illustrates using the DATA= option and the INDEX=NO option. It also shows the use of the RENAME= and DROP= SAS data set options. Note that because no OUT= option is specified, the transferred data set inherits all of the characteristics of the input data set except for the index (because the INDEX=NO option is specified).
Program |
proc download data=survey (rename(r=response) drop=comments) index=no; run;
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.