Chapter Contents

Previous

Next
The REGISTRY Procedure

Example 2: Importing a File to the Registry


Procedure features: IMPORT=
Other features: FILENAME statement

This example imports a file into the SASUSER portion of the SAS Registry.


Program
 Note about code
filename source 'external-file';

 Note about code
proc registry
   import=source;
run;


SAS Log

1   filename source 'external-file';
2   proc registry
3      import=source;
4   run;
Parsing REG file and loading the registry please wait....
Registry IMPORT is now complete.


Chapter Contents

Previous

Next

Top of Page

Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.