<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: SAS PROC GEOCODE ISSUE in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-PROC-GEOCODE-ISSUE/m-p/289990#M19811</link>
    <description>&lt;P&gt;I haven't used PROC GEOCODE, but when I see messages like that in SAS I tend to think it's not something that the user did.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would suggest you throw it over the wall to Tech Support. They have the right tools to diagnose things like this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just one thought...did you change processor architecture on the underlying computer between when it worked and when it didn't?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Tom&lt;/P&gt;</description>
    <pubDate>Sat, 06 Aug 2016 19:52:32 GMT</pubDate>
    <dc:creator>TomKari</dc:creator>
    <dc:date>2016-08-06T19:52:32Z</dc:date>
    <item>
      <title>SAS PROC GEOCODE ISSUE</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-PROC-GEOCODE-ISSUE/m-p/289988#M19810</link>
      <description>&lt;P&gt;Running this code. It used to work but not anymore. Any suggestion would be great.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc geocode&lt;BR /&gt;data = work.test&lt;BR /&gt;out = work.geocoded&lt;BR /&gt;method = street&lt;BR /&gt;lookupstreet = USM.USM;&lt;BR /&gt;run;&lt;BR /&gt;QUIT;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Error message:&lt;/P&gt;&lt;P&gt;NOTE: Address data set had only 10 observations. Intermediate progress times not output.&lt;BR /&gt;ERROR: Invalid Operation.&lt;BR /&gt;ERROR: Termination due to Floating Point Exception&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;NOTE: There were 1 observations read from the data set WORK.TEST.&lt;BR /&gt;WARNING: The data set WORK.GEOCODED may be incomplete. When this step was stopped there were 0 observations and 20 variables.&lt;BR /&gt;NOT&lt;/P&gt;</description>
      <pubDate>Sat, 06 Aug 2016 18:33:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-PROC-GEOCODE-ISSUE/m-p/289988#M19810</guid>
      <dc:creator>sandeshregmi0</dc:creator>
      <dc:date>2016-08-06T18:33:07Z</dc:date>
    </item>
    <item>
      <title>Re: SAS PROC GEOCODE ISSUE</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-PROC-GEOCODE-ISSUE/m-p/289990#M19811</link>
      <description>&lt;P&gt;I haven't used PROC GEOCODE, but when I see messages like that in SAS I tend to think it's not something that the user did.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would suggest you throw it over the wall to Tech Support. They have the right tools to diagnose things like this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just one thought...did you change processor architecture on the underlying computer between when it worked and when it didn't?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Tom&lt;/P&gt;</description>
      <pubDate>Sat, 06 Aug 2016 19:52:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-PROC-GEOCODE-ISSUE/m-p/289990#M19811</guid>
      <dc:creator>TomKari</dc:creator>
      <dc:date>2016-08-06T19:52:32Z</dc:date>
    </item>
    <item>
      <title>Re: SAS PROC GEOCODE ISSUE</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-PROC-GEOCODE-ISSUE/m-p/290145#M19818</link>
      <description>&lt;P&gt;Strange that this code used to work but suddenly began crashing. Can you please:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Submit '%put &amp;amp;sysvlong;' to get the SAS version.&lt;/LI&gt;
&lt;LI&gt;Submit '%put &amp;amp;syshostinfolong;' to output the operating system.&lt;/LI&gt;
&lt;LI&gt;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..&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;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:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data test;&lt;BR /&gt;&amp;nbsp; length address $64 city $24 state $2;&lt;BR /&gt;&amp;nbsp; infile datalines dlm=',';&lt;BR /&gt;&amp;nbsp; input address city state zip;&lt;BR /&gt;cards;&lt;BR /&gt;500 SAS Campus Dr, Cary, NC, 27513&lt;BR /&gt;11500 Red Rock Canyon Dr, Katy, TX, 77450&lt;BR /&gt;;&lt;BR /&gt;&lt;BR /&gt;proc geocode debug=4&lt;BR /&gt;data = work.test&lt;BR /&gt;out = work.geocoded&lt;BR /&gt;method = street&lt;BR /&gt;lookupstreet = /*USM.USM*/ sashelp.geoexm;&lt;BR /&gt;run;&lt;BR /&gt;QUIT;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please post the results of the code submittals above. Thanks.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Aug 2016 11:52:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-PROC-GEOCODE-ISSUE/m-p/290145#M19818</guid>
      <dc:creator>EdO_sas</dc:creator>
      <dc:date>2016-08-08T11:52:51Z</dc:date>
    </item>
    <item>
      <title>Re: SAS PROC GEOCODE ISSUE</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-PROC-GEOCODE-ISSUE/m-p/290239#M19819</link>
      <description>&lt;P&gt;Did the SAS version get updated?&lt;/P&gt;
&lt;P&gt;Or change from BASE to Enterprise guide or&amp;nbsp;some form of SAS Studio?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I believe Proc Geocode is part of SAS/Graph. If you no longer have SAS/Graph the procedure may not be available.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Aug 2016 17:01:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-PROC-GEOCODE-ISSUE/m-p/290239#M19819</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-08-08T17:01:11Z</dc:date>
    </item>
    <item>
      <title>Re: SAS PROC GEOCODE ISSUE</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-PROC-GEOCODE-ISSUE/m-p/290759#M19850</link>
      <description>&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;I ran the code against sashelp library and it ran well.&lt;/P&gt;&lt;P&gt;I followed your suggestion for my test case and here is an error&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;%put &amp;amp;sysvlong;&lt;BR /&gt;9.04.01M3P062415&lt;BR /&gt;25 %put &amp;amp;syshostinfolong;&lt;BR /&gt;X64_7PRO WIN 6.1.7601 Service Pack 1 Workstation&lt;BR /&gt;26 proc geocode DEBUG=4&lt;BR /&gt;27 data = work.TEST&lt;BR /&gt;28 out = WORK.GEOCODED&lt;BR /&gt;29 method = street&lt;BR /&gt;30 lookupstreet = USM.USM&lt;BR /&gt;31 ;&lt;BR /&gt;32 run;&lt;/P&gt;&lt;P&gt;DEBUG option parsed&lt;BR /&gt;DEBUG level: DEBUG=4&lt;BR /&gt;Input parameter parsing complete&lt;BR /&gt;Create scatter read destinations for address data set vars&lt;BR /&gt;Create scatter read destinations for M data set vars&lt;BR /&gt;Create scatter read destinations for S data set vars&lt;BR /&gt;Create scatter read destinations for P data set vars&lt;BR /&gt;Create scatter read destinations for T data set vars&lt;BR /&gt;Create scatter read destinations for D data set vars&lt;BR /&gt;Create scatter read destinations for city lookup data set vars&lt;BR /&gt;Create scatter read destinations for state/province name/abbreviation data set vars&lt;BR /&gt;Create scatter read destinations for lookup data set vars&lt;BR /&gt;Create scatter write destinations for output data set vars&lt;BR /&gt;Call address matching function doGeocoding()&lt;BR /&gt;Address data set: gcb-&amp;gt;nobs = 1&lt;BR /&gt;NOTE: Address data set had only 1 observations. Intermediate progress times not output.&lt;BR /&gt;Get var names and name lengths for WHERE clause buffer&lt;BR /&gt;Street matching enabled&lt;BR /&gt;ZIP code matching enabled&lt;BR /&gt;City+state matching enabled&lt;/P&gt;&lt;P&gt;2 The SAS System 11:14 Tuesday, August 9, 2016&lt;/P&gt;&lt;P&gt;Address obs: 1&lt;BR /&gt;ADDRESS: 2042 MOMANY ST&lt;BR /&gt;DDS WHERE (prefix): MOMANY&lt;BR /&gt;TDS WHERE (prefix): MOMANY&lt;BR /&gt;DDS WHERE (suffix): ST&lt;BR /&gt;TDS WHERE (suffix): NAME='ST'&lt;BR /&gt;ERROR: Invalid Operation.&lt;BR /&gt;ERROR: Termination due to Floating Point Exception&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;NOTE: There were 1 observations read from the data set WORK.TEST.&lt;BR /&gt;WARNING: The data set WORK.GEOCODED may be incomplete. When this step was stopped there were 0 observations and 20 variables.&lt;BR /&gt;WARNING: Data set WORK.GEOCODED was not replaced because this step was stopped.&lt;BR /&gt;NOTE: PROCEDURE GEOCODE used (Total process time):&lt;BR /&gt;real time 0.01 seconds&lt;BR /&gt;cpu time 0.03 seconds&lt;BR /&gt;&lt;BR /&gt;33&lt;BR /&gt;34 GOPTIONS NOACCESSIBLE;&lt;BR /&gt;35 %LET _CLIENTTASKLABEL=;&lt;BR /&gt;36 %LET _CLIENTPROCESSFLOWNAME=;&lt;BR /&gt;37 %LET _CLIENTPROJECTPATH=;&lt;BR /&gt;38 %LET _CLIENTPROJECTNAME=;&lt;BR /&gt;39 %LET _SASPROGRAMFILE=;&lt;BR /&gt;40&lt;BR /&gt;41 ;*';*";*/;quit;run;&lt;BR /&gt;42 ODS _ALL_ CLOSE;&lt;BR /&gt;43&lt;BR /&gt;44&lt;BR /&gt;45 QUIT; RUN;&lt;BR /&gt;46&lt;/P&gt;</description>
      <pubDate>Wed, 10 Aug 2016 16:08:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-PROC-GEOCODE-ISSUE/m-p/290759#M19850</guid>
      <dc:creator>sandeshregmi0</dc:creator>
      <dc:date>2016-08-10T16:08:27Z</dc:date>
    </item>
    <item>
      <title>Re: SAS PROC GEOCODE ISSUE</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-PROC-GEOCODE-ISSUE/m-p/290780#M19851</link>
      <description>&lt;P&gt;So you geocoded the sample addresses in Cary and Katy with no crash while using the sashelp.geoexm lookup data. But your address data crashes using your USM.USM lookup data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your debug trace shows your address being geocoded is 2042 MOMANY ST. I searched the USM 2015 lookup data set for MOMANY streets and found two in the US:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Oregon, OH 43616&lt;/LI&gt;
&lt;LI&gt;Saint Joseph, MI 49085&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;I am not sure which state your address is in, so I geocoded MOMANY ST in both states using the same version of SAS as you and also on a 64 bit Windows platform with service pack 1. I used the USM lookup data generated from the 2015 TIGER files. I also geocoded the MOMANY ST addresses on another 64 bit Windows server also running 9.4M3 SAS. I am unable to duplicate the crash on either machine.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please submit this code to provide details on your WORK.TEST and USM.USM data sets:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;ods pdf file='c:\temp\contents2.pdf';&lt;BR /&gt;title 'Address Data Set';&lt;BR /&gt;proc contents data=work.test; run;&lt;BR /&gt;proc print data=work.test; run;&lt;BR /&gt;title 'USM Data Set';&lt;BR /&gt;proc contents data=usm.usm; run;&lt;BR /&gt;data USMheader;&lt;BR /&gt;&amp;nbsp; set usm.usm (firstobs=1 obs=5);&lt;BR /&gt;run;&lt;BR /&gt;title 'USM Header Obs';&lt;BR /&gt;proc print data=header; run;&lt;BR /&gt;ods pdf close;&lt;BR /&gt;
&lt;/PRE&gt;
&lt;P&gt;I ran that on my PC and my output file is attached as &lt;EM&gt;contents1.pdf&lt;/EM&gt;. Please upload your output file which will be &lt;EM&gt;c:\temp\contents2.pdf&lt;/EM&gt;. I am wondering if there are differences in your copy of USM.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Aug 2016 17:49:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-PROC-GEOCODE-ISSUE/m-p/290780#M19851</guid>
      <dc:creator>EdO_sas</dc:creator>
      <dc:date>2016-08-10T17:49:59Z</dc:date>
    </item>
    <item>
      <title>Re: SAS PROC GEOCODE ISSUE</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-PROC-GEOCODE-ISSUE/m-p/290789#M19853</link>
      <description>&lt;P&gt;Thank you so much for your help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Aug 2016 18:40:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-PROC-GEOCODE-ISSUE/m-p/290789#M19853</guid>
      <dc:creator>sandeshregmi0</dc:creator>
      <dc:date>2016-08-10T18:40:07Z</dc:date>
    </item>
  </channel>
</rss>

