<?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: Error in SAS Miner, node Score in SAS Data Science</title>
    <link>https://communities.sas.com/t5/SAS-Data-Science/Error-in-SAS-Miner-node-Score/m-p/352906#M5234</link>
    <description>&lt;P&gt;Yes, i have EM. How i run this? I run a SAS program? I put only PROC COMPARE?&lt;/P&gt;</description>
    <pubDate>Mon, 24 Apr 2017 15:13:44 GMT</pubDate>
    <dc:creator>nicopalacios</dc:creator>
    <dc:date>2017-04-24T15:13:44Z</dc:date>
    <item>
      <title>Error in SAS Miner, node Score</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Error-in-SAS-Miner-node-Score/m-p/352296#M5228</link>
      <description>&lt;P&gt;Hi everyone! I have a problem..&lt;/P&gt;&lt;P&gt;I built a Credit Scoring model, all is right. But when i use a dataset for score the model, do not run.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I attach the flow:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/8483iB899DDF122574395/image-size/original?v=1.0&amp;amp;px=-1" border="0" alt="aaa.png" title="aaa.png" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And this is the log error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;10870 proc freq data=EMWS1.Score_VariableSet noprint;&lt;BR /&gt;10871 table ROLE*LEVEL/out=WORK.ScoreMETA;&lt;BR /&gt;10872 run;&lt;BR /&gt;&lt;BR /&gt;NOTE: There were 2 observations read from the data set EMWS1.SCORE_VARIABLESET.&lt;BR /&gt;NOTE: The data set WORK.SCOREMETA has 2 observations and 4 variables.&lt;BR /&gt;NOTE: PROCEDIMIENTO FREQ used (Total process time):&lt;BR /&gt;real time 0.01 seconds&lt;BR /&gt;cpu time 0.01 seconds&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;10873 proc print data=WORK.ScoreMETA label noobs;&lt;BR /&gt;10874 var ROLE LEVEL COUNT;&lt;BR /&gt;10875 label ROLE = "%sysfunc(sasmsg(sashelp.dmine, meta_role_vlabel, NOQUOTE))" LEVEL = "%sysfunc(sasmsg(sashelp.dmine, meta_level_vlabel, NOQUOTE))" COUNT = "%sysfunc(sasmsg(sashelp.dmine, rpt_count_vlabel, NOQUOTE))";&lt;BR /&gt;10876 title9 ' ';&lt;BR /&gt;10877 title10 "%sysfunc(sasmsg(sashelp.dmine, rpt_varSummary_title , NOQUOTE))";&lt;BR /&gt;10878 run;&lt;BR /&gt;&lt;BR /&gt;NOTE: There were 2 observations read from the data set WORK.SCOREMETA.&lt;BR /&gt;NOTE: The PROCEDURE PRINT printed page 1.&lt;BR /&gt;NOTE: PROCEDIMIENTO PRINT used (Total process time):&lt;BR /&gt;real time 0.01 seconds&lt;BR /&gt;cpu time 0.01 seconds&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;10879 title10;&lt;BR /&gt;&lt;BR /&gt;10880 %let groupid =;&lt;BR /&gt;10881 %let endGroupid =;&lt;BR /&gt;10882 %let prescoreid =;&lt;BR /&gt;10883 %let idsTable =;&lt;BR /&gt;10884 %let hpdmTable =;&lt;BR /&gt;10885 %let lasthptm =;&lt;BR /&gt;10886 data _null_;&lt;BR /&gt;10887 set EMWS1.Scorecard_EMINFO;&lt;BR /&gt;10888 where upcase(key) in('LASTHPTM', 'IDSTABLE', 'HPDMSAMPLE', 'PRESCORECODE','ENDGROUP', 'GROUPINFO', 'BOOSTINFO', 'BAGINFO', 'TARGETINFO', 'INDEXINFO');&lt;BR /&gt;10889 select(upcase(key));&lt;BR /&gt;10890 when('LASTHPTM') call symput('lasthptm', DATA);&lt;BR /&gt;10891 when('IDSTABLE') call symput('idsTable', DATA);&lt;BR /&gt;10892 when('HPDMSAMPLE') call symput('hpdmSample', DATA);&lt;BR /&gt;10893 when('PRESCORECODE') call symput('prescoreId', DATA);&lt;BR /&gt;10894 when('ENDGROUP') call symput('endGroupId', DATA);&lt;BR /&gt;10895 otherwise call symput('groupId', DATA);&lt;BR /&gt;10896 end;&lt;BR /&gt;10897 run;&lt;BR /&gt;&lt;BR /&gt;NOTE: There were 1 observations read from the data set EMWS1.SCORECARD_EMINFO.&lt;BR /&gt;WHERE UPCASE(key) in ('BAGINFO', 'BOOSTINFO', 'ENDGROUP', 'GROUPINFO', 'HPDMSAMPLE', 'IDSTABLE', 'INDEXINFO', 'LASTHPTM', 'PRESCORECODE', 'TARGETINFO');&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.01 seconds&lt;BR /&gt;cpu time 0.01 seconds&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;10898 %let lastModelid =;&lt;BR /&gt;10899 data _null_;&lt;BR /&gt;10900 set EMWS1.Scorecard_EMINFO;&lt;BR /&gt;10901 where upcase(key) = 'MODEL' and TARGET = "Objetivo";&lt;BR /&gt;10902 call symput('lastModelID', DATA);&lt;BR /&gt;10903 run;&lt;BR /&gt;&lt;BR /&gt;NOTE: There were 1 observations read from the data set EMWS1.SCORECARD_EMINFO.&lt;BR /&gt;WHERE (UPCASE(key)='MODEL') and (TARGET='Objetivo');&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Executing SASHELP.EMCORE.EMINFOITERATOR.SCL _INIT &amp;gt;&amp;gt;&lt;BR /&gt;Executing SASHELP.EMCORE.EMINFOITERATOR.SCL setMetaData &amp;gt;&amp;gt;&lt;BR /&gt;NOTE: There were 1 observations read from the data set EMWS1.SCORECARD_EMINFO.&lt;BR /&gt;WHERE (TARGET='Objetivo') and (KEY='MODEL');&lt;BR /&gt;NOTE: The data set WORK.EMINFO42DYEDYL has 1 observations and 3 variables.&lt;BR /&gt;Executing SASHELP.EMCORE.EMINFOITERATOR.SCL NUMELEMENTS &amp;gt;&amp;gt;&lt;BR /&gt;Executing SASHELP.EMCORE.EMINFOITERATOR.SCL _term &amp;gt;&amp;gt;&lt;BR /&gt;Executing SASHELP.EMCORE.EMINFOITERATOR.SCL _INIT &amp;gt;&amp;gt;&lt;BR /&gt;Executing SASHELP.EMCORE.EMINFOITERATOR.SCL setMetaData &amp;gt;&amp;gt;&lt;BR /&gt;NOTE: There were 1 observations read from the data set EMWS1.SCORECARD_EMINFO.&lt;BR /&gt;WHERE (TARGET='Objetivo') and (KEY='DECMETA');&lt;BR /&gt;NOTE: The data set WORK.EMINFO42DWO6FN has 1 observations and 3 variables.&lt;BR /&gt;Executing SASHELP.EMCORE.EMINFOITERATOR.SCL next &amp;gt;&amp;gt;&lt;BR /&gt;Executing SASHELP.EMCORE.EMINFOITERATOR.SCL next &amp;gt;&amp;gt;&lt;BR /&gt;Executing SASHELP.EMCORE.EMINFOITERATOR.SCL _term &amp;gt;&amp;gt;&lt;BR /&gt;NOTE: This SAS session is using a registry in WORK. All changes will be lost at the end of this session.&lt;BR /&gt;WARNING: Variable CatBCUt1 has already been defined as numeric.&lt;BR /&gt;12029 _UFormat = put(CatBCUt1,$CHAR7.);&lt;BR /&gt;-------&lt;BR /&gt;48&lt;BR /&gt;WARNING: Variable Ramo has already been defined as numeric.&lt;BR /&gt;12227 _UFormat = put(Ramo,$CHAR50.);&lt;BR /&gt;--------&lt;BR /&gt;48&lt;BR /&gt;WARNING: Variable Sector has already been defined as numeric.&lt;BR /&gt;12329 _UFormat = put(Sector,$CHAR24.);&lt;BR /&gt;--------&lt;BR /&gt;48&lt;BR /&gt;ERROR 48-59: formato CHAR no se he encontrado o no se puede cargar.&lt;BR /&gt;&lt;BR /&gt;*------------------------------------------------------------*&lt;BR /&gt;*&lt;BR /&gt;* ERROR: Se ha encontrado un error de tiempo de ejecución. El error del sistema es -S-.&lt;BR /&gt;* Reporte los problemas sin resolver al departamento de Soporte técnico.&lt;BR /&gt;*&lt;BR /&gt;*------------------------------------------------------------*&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can anybody help me?&lt;/P&gt;</description>
      <pubDate>Fri, 21 Apr 2017 19:01:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Error-in-SAS-Miner-node-Score/m-p/352296#M5228</guid>
      <dc:creator>nicopalacios</dc:creator>
      <dc:date>2017-04-21T19:01:29Z</dc:date>
    </item>
    <item>
      <title>Re: Error in SAS Miner, node Score</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Error-in-SAS-Miner-node-Score/m-p/352305#M5229</link>
      <description>&lt;P&gt;From a cursory glance, It looks like your dataset to be scored doesn't match the original input dataset.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you run PROC COMPARE to compare the datasets it will show you the variables and types that are different.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or check the types of the variables are consistent between the files manually by looking for the errors in the log that identifies the variables with issues.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Apr 2017 19:24:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Error-in-SAS-Miner-node-Score/m-p/352305#M5229</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-04-21T19:24:36Z</dc:date>
    </item>
    <item>
      <title>Re: Error in SAS Miner, node Score</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Error-in-SAS-Miner-node-Score/m-p/352329#M5230</link>
      <description>&lt;P&gt;Thanks Reeza.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Where i run PROC COMPARE? In a SAS Code? In Score node?&lt;/P&gt;</description>
      <pubDate>Fri, 21 Apr 2017 20:27:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Error-in-SAS-Miner-node-Score/m-p/352329#M5230</guid>
      <dc:creator>nicopalacios</dc:creator>
      <dc:date>2017-04-21T20:27:49Z</dc:date>
    </item>
    <item>
      <title>Re: Error in SAS Miner, node Score</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Error-in-SAS-Miner-node-Score/m-p/352330#M5231</link>
      <description>&lt;P&gt;If you have EG I would probably do it there, otherwise, yes a code node would work.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Apr 2017 20:29:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Error-in-SAS-Miner-node-Score/m-p/352330#M5231</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-04-21T20:29:01Z</dc:date>
    </item>
    <item>
      <title>Re: Error in SAS Miner, node Score</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Error-in-SAS-Miner-node-Score/m-p/352906#M5234</link>
      <description>&lt;P&gt;Yes, i have EM. How i run this? I run a SAS program? I put only PROC COMPARE?&lt;/P&gt;</description>
      <pubDate>Mon, 24 Apr 2017 15:13:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Error-in-SAS-Miner-node-Score/m-p/352906#M5234</guid>
      <dc:creator>nicopalacios</dc:creator>
      <dc:date>2017-04-24T15:13:44Z</dc:date>
    </item>
    <item>
      <title>Re: Error in SAS Miner, node Score</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Error-in-SAS-Miner-node-Score/m-p/352927#M5235</link>
      <description>&lt;P&gt;Número de variables con atributos diferentes:&amp;nbsp;2&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Listado de variables comunes con atributos diferentes&lt;BR /&gt;&lt;BR /&gt;Variable Conjunto de datos / Tipo / Longitud /= Formato / F.lect. Etiqueta&lt;BR /&gt;&lt;BR /&gt;Pagos_t&lt;/P&gt;&lt;P&gt;ANDA.TABLAFINALCOMPLETA &amp;nbsp; / Num / 8 / BEST8. / BEST8&lt;/P&gt;&lt;P&gt;OCT2016.TABLAOCTUBRE2016 / Num / 8 / BEST9. / BEST9.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Pagos_t1&lt;/P&gt;&lt;P&gt;ANDA.TABLAFINALCOMPLETA &amp;nbsp;/ Num / 8 / BEST8. / BEST8.&lt;BR /&gt;OCT2016.TABLAOCTUBRE2016 / Num / 8 / BEST9./ &amp;nbsp;BEST9.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;What is&amp;nbsp;Different attributes?? The type, lengh, and format is equal!&lt;/P&gt;</description>
      <pubDate>Mon, 24 Apr 2017 15:48:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Error-in-SAS-Miner-node-Score/m-p/352927#M5235</guid>
      <dc:creator>nicopalacios</dc:creator>
      <dc:date>2017-04-24T15:48:42Z</dc:date>
    </item>
    <item>
      <title>Re: Error in SAS Miner, node Score</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Error-in-SAS-Miner-node-Score/m-p/352963#M5236</link>
      <description>&lt;P&gt;I can't read that &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Look specifically at the variables flagged, RAMO and SECTOR. I don't see those listed in the report, but it does say 2 variables differ and that sort of matches the error you're getting with 2 variables different.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Apr 2017 18:17:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Error-in-SAS-Miner-node-Score/m-p/352963#M5236</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-04-24T18:17:43Z</dc:date>
    </item>
  </channel>
</rss>

