Chapter Contents |
Previous |
Next |
The DATASETS Procedure |
Featured in: | Manipulating SAS Files |
CHANGEold-name-1=new-name-1
<...old-name-n=new-name-n> </ <ALTER=alter-password> <GENNUM=ALL|integer> <MEMTYPE=mtype>>; |
Required Arguments |
Featured in: | Manipulating SAS Files |
Options |
See also: | Using Passwords with the DATASETS Procedure |
The following statements change the name of A(GENNUM=3) to B:
proc datasets; change A=B / gennum=3; proc datasets; change A(gennum=3)=B;
The following CHANGE statement produces an error:
proc datasets; change A(gennum=3)=B(gennum=3);
Aliases: | MTYPE=, MT= |
Default: | If you do not specify MEMTYPE= in the PROC DATASETS statement, the default is MEMTYPE=ALL. |
See also: | Restricting Member Types Available for Processing |
Details |
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.