<?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: Failed to transcode data from U_UTF8_CE to U_LATIN9_CE in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Failed-to-transcode-data-from-U-UTF8-CE-to-U-LATIN9-CE/m-p/373609#M24342</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;What I've posted has been run in EG 7.13 HF5 (7.100.3.5486) (64-bit) against a local SAS under Win7.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/48430"&gt;@daily&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;Just to re-test, can you please do the following:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. Re-connect to your server so that you get a clean new SAS Session&lt;/P&gt;
&lt;P&gt;2. Run the following code and let us know the outcome.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
  select 
    libname 
  from DICTIONARY.TABLES
    WHERE UPCASE(LIBNAME)="CRM_ANAL";
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 06 Jul 2017 11:53:57 GMT</pubDate>
    <dc:creator>Patrick</dc:creator>
    <dc:date>2017-07-06T11:53:57Z</dc:date>
    <item>
      <title>Failed to transcode data from U_UTF8_CE to U_LATIN9_CE</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Failed-to-transcode-data-from-U-UTF8-CE-to-U-LATIN9-CE/m-p/373585#M24335</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;CODE class=" language-sas"&gt;while i was tryed to submited this:&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class=" language-sas"&gt;PROC SQL;&amp;nbsp;SELECT &amp;nbsp;*FROM DICTIONARY.TABLES WHERE UPCASE(LIBNAME)=”CRM_ANAL”;&amp;nbsp;QUIT;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;getting Error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;an occured excuting the workspace job "program" Integration technologies failed to submerror it the code. [Error] Failed to transcode data from U_UTF8_CE to U_LATIN9_CE encoding because it contained charectores which are not supported by your sas session encoding .please review your encoding= and local= SAS system options to ensure that they can accommodate the data that you want to process. A portion of the source string ,in hex representation is:[None]7fe808107 ce4:3b 2a 27 3b 2a 2f 3b 71 75 69 74 72 |;*';*";*/;quit;r| [None]7fe808107 cf4:75 6e 3b 0d 0a 4f 50 54 49 4f 4e 53 20 50 41 47 |un;..OPTIONS PAG| [Error]Some code points did not transcode. &amp;nbsp; please give detail guide lines for how to config .&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jul 2017 10:48:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Failed-to-transcode-data-from-U-UTF8-CE-to-U-LATIN9-CE/m-p/373585#M24335</guid>
      <dc:creator>daily</dc:creator>
      <dc:date>2017-07-06T10:48:42Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to transcode data from U_UTF8_CE to U_LATIN9_CE</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Failed-to-transcode-data-from-U-UTF8-CE-to-U-LATIN9-CE/m-p/373587#M24336</link>
      <description>&lt;P&gt;hi team ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;please help for above error and resolve me .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;please give detail information.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jul 2017 10:52:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Failed-to-transcode-data-from-U-UTF8-CE-to-U-LATIN9-CE/m-p/373587#M24336</guid>
      <dc:creator>daily</dc:creator>
      <dc:date>2017-07-06T10:52:21Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to transcode data from U_UTF8_CE to U_LATIN9_CE</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Failed-to-transcode-data-from-U-UTF8-CE-to-U-LATIN9-CE/m-p/373592#M24337</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/48430"&gt;@daily&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;That looks like an interesting problem.&lt;/P&gt;
&lt;P&gt;UTF-8 is a multi byte character set but U_LATIN9_CE is single byte.&lt;/P&gt;
&lt;P&gt;Multi byte character sets can encode many more characters than single byte so it can happen that a multi byte character simply can't get mapped into a single byte character. That's when SAS throws the Error you get.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What I've never seen before is that this can also happen with SAS dictionary tables. The only explanation I have in the moment:&lt;/P&gt;
&lt;P&gt;Your SAS session runs in single byte, your libref &lt;EM&gt;CRM_ANAL&lt;/EM&gt; points to a data base which is in UFT-8 and at least one of the table names in this data base uses a multi byte character which can't get mapped into U_LATIN9_CE.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I suggest you raise this issue with SAS TechSupport.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To test my theory: Can you please run below code and let us know the outcome? MEMNAME is the only column I can see which could contain such non-mappable characters and though a SQL which doesn't return this column should work.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
  select 
    libname, 
/*    memname, */
    memtype, 
    dbms_memtype, 
    memlabel, 
    typemem, 
    crdate, 
    modate, 
    nobs, 
    obslen, 
    nvar, 
    protect, 
    compress, 
    encrypt, 
    npage, 
    filesize, 
    pcompress,
    reuse, 
    bufsize,
    delobs, 
    nlobs,
    maxvar,
    maxlabel,
    maxgen,
    gen,
    attr, 
    indxtype, 
    datarep, 
    sortname, 
    sorttype,
    sortchar,
    reqvector, 
    datarepname, 
    encoding, 
    audit, 
    audit_before, 
    audit_admin,
    audit_error, 
    audit_data, 
    num_character, 
    num_numeric
  from DICTIONARY.TABLES
    &lt;SPAN class="token statement"&gt;WHERE&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;UPCASE&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token statement"&gt;LIBNAME&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;="&lt;/SPAN&gt;&lt;SPAN&gt;CRM_ANAL"&lt;/SPAN&gt;;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jul 2017 11:13:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Failed-to-transcode-data-from-U-UTF8-CE-to-U-LATIN9-CE/m-p/373592#M24337</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2017-07-06T11:13:41Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to transcode data from U_UTF8_CE to U_LATIN9_CE</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Failed-to-transcode-data-from-U-UTF8-CE-to-U-LATIN9-CE/m-p/373599#M24338</link>
      <description>&lt;P&gt;If you really used this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;”CRM_ANAL”&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;in your code, then it's no miracle. These are not standard double quotes, but double quotes from some NLS character set, and therefore UTF coded (hex e2 80 9d). Use standard double quotes.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jul 2017 11:45:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Failed-to-transcode-data-from-U-UTF8-CE-to-U-LATIN9-CE/m-p/373599#M24338</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-07-06T11:45:59Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to transcode data from U_UTF8_CE to U_LATIN9_CE</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Failed-to-transcode-data-from-U-UTF8-CE-to-U-LATIN9-CE/m-p/373603#M24339</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;I guess that happened because the OP copied the code first into MS WORD or the like. But such quotes would create a syntax Error and not the Error the OP posted.&lt;/P&gt;
&lt;PRE&gt;27         proc sql;
28           select *
29           from DICTIONARY.TABLES
30             where libname = ”WORK”;
                               _
                               22
                               200
ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, a numeric constant, a datetime constant, 
              a missing value, (, *, +, -, ALL, ANY, BTRIM, CALCULATED, CASE, INPUT, PUT, SELECT, SOME, SUBSTRING, TRANSLATE, 
              USER.  

ERROR 200-322: The symbol is not recognized and will be ignored.&lt;/PRE&gt;</description>
      <pubDate>Thu, 06 Jul 2017 11:46:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Failed-to-transcode-data-from-U-UTF8-CE-to-U-LATIN9-CE/m-p/373603#M24339</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2017-07-06T11:46:30Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to transcode data from U_UTF8_CE to U_LATIN9_CE</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Failed-to-transcode-data-from-U-UTF8-CE-to-U-LATIN9-CE/m-p/373604#M24340</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi patrick ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;first thanks for quick replay .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;which you have given code i submitted and getting below issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&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/10172i440E0EC523A23E11/image-size/original?v=1.0&amp;amp;px=-1" border="0" alt="Capture_2.PNG" title="Capture_2.PNG" /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jul 2017 11:46:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Failed-to-transcode-data-from-U-UTF8-CE-to-U-LATIN9-CE/m-p/373604#M24340</guid>
      <dc:creator>daily</dc:creator>
      <dc:date>2017-07-06T11:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to transcode data from U_UTF8_CE to U_LATIN9_CE</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Failed-to-transcode-data-from-U-UTF8-CE-to-U-LATIN9-CE/m-p/373606#M24341</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/12447"&gt;@Patrick&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;I guess that happened because the OP copied the code first into MS WORD or the like. But such quotes would create a syntax Error and not the Error the OP posted.&lt;/P&gt;
&lt;PRE&gt;27         proc sql;
28           select *
29           from DICTIONARY.TABLES
30             where libname = ”WORK”;
                               _
                               22
                               200
ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, a numeric constant, a datetime constant, 
              a missing value, (, *, +, -, ALL, ANY, BTRIM, CALCULATED, CASE, INPUT, PUT, SELECT, SOME, SUBSTRING, TRANSLATE, 
              USER.  

ERROR 200-322: The symbol is not recognized and will be ignored.&lt;/PRE&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Have to differ.&lt;/P&gt;
&lt;P&gt;Just tried that exact code from EG 7.1 to SAS 9.4 on AIX, and got exactly the error message from EG (not SAS, mind!) that the OP reported.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Edit: the code never really reaches the SAS session, as Integration Technologies coughs up while trying to transmit the code. Did you run the code from Studio or DM?&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jul 2017 11:52:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Failed-to-transcode-data-from-U-UTF8-CE-to-U-LATIN9-CE/m-p/373606#M24341</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-07-06T11:52:18Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to transcode data from U_UTF8_CE to U_LATIN9_CE</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Failed-to-transcode-data-from-U-UTF8-CE-to-U-LATIN9-CE/m-p/373609#M24342</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;What I've posted has been run in EG 7.13 HF5 (7.100.3.5486) (64-bit) against a local SAS under Win7.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/48430"&gt;@daily&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;Just to re-test, can you please do the following:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. Re-connect to your server so that you get a clean new SAS Session&lt;/P&gt;
&lt;P&gt;2. Run the following code and let us know the outcome.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
  select 
    libname 
  from DICTIONARY.TABLES
    WHERE UPCASE(LIBNAME)="CRM_ANAL";
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jul 2017 11:53:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Failed-to-transcode-data-from-U-UTF8-CE-to-U-LATIN9-CE/m-p/373609#M24342</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2017-07-06T11:53:57Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to transcode data from U_UTF8_CE to U_LATIN9_CE</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Failed-to-transcode-data-from-U-UTF8-CE-to-U-LATIN9-CE/m-p/373610#M24343</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/12447"&gt;@Patrick&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;What I've posted has been run in 7.13 HF5 (7.100.3.5486) (64-bit) agains a local SAS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Then Integration Technologies does not come into play. It's the quotes, I bet you a can of Ottakringer on that.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jul 2017 11:54:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Failed-to-transcode-data-from-U-UTF8-CE-to-U-LATIN9-CE/m-p/373610#M24343</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-07-06T11:54:02Z</dc:date>
    </item>
  </channel>
</rss>

