The REGISTRY Procedure |
Procedure features: | IMPORT= |
Other features: | FILENAME statement |
This example imports a file into the SASUSER portion of the SAS registry.
Source File |
The following file contains examples of valid key name sequences in a registry file:
[HKEY_USER_ROOT\AllGoodPeopleComeToTheAidOfTheirCountry] @="This is a string value" "Value2"="" "Value3"="C:\\This\\Is\\Another\\String\\Value"
Program |
filename source 'external-file'; |
proc registry import=source; run; |
Output: SAS Log |
Output From Importing a File into the SAS Registry
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.
Copyright © 2010 by SAS Institute Inc., Cary, NC, USA. All rights reserved.