Strange that this code used to work but suddenly began crashing. Can you please:
Submit '%put &sysvlong;' to get the SAS version.
Submit '%put &syshostinfolong;' to output the operating system.
Add 'debug=4' to your proc geocode syntax and resubmit. This will enable the program tracing code which will provide an idea of where it crashed..
Also, submit the code below using the sample lookup data in the SASHELP library. It should get one street level match and one ZIP code match. If it runs, then the problem may be related to the lookup data in your USM library. But even if that is the case, proc geocode should end gracefully and not crash:
data test; length address $64 city $24 state $2; infile datalines dlm=','; input address city state zip; cards; 500 SAS Campus Dr, Cary, NC, 27513 11500 Red Rock Canyon Dr, Katy, TX, 77450 ; proc geocode debug=4 data = work.test out = work.geocoded method = street lookupstreet = /*USM.USM*/ sashelp.geoexm; run; QUIT;
Please post the results of the code submittals above. Thanks.
... View more