<?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 Enterprise Guide to point to Unicode SAS in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-to-point-to-Unicode-SAS/m-p/426860#M27485</link>
    <description>&lt;P&gt;Now we must find out where the UTF-8 setting comes from. On the same workstation I would expect your DMS session to be the same SAS installation/configuration. You can check this by looking at the EG's Help --&amp;gt; About. Click Configuration Details and see what the value of SAS System Command is. If it contains a -config option then that option points to a file on your PC that would contain the encoding option currently in effect. Alternatively this file could include another one (with "_usermods" in its name) that sets this option. Can you have a look and paste the value in this conversation? we can then work from there.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;-- Jan.&lt;/P&gt;</description>
    <pubDate>Thu, 11 Jan 2018 13:18:18 GMT</pubDate>
    <dc:creator>jklaverstijn</dc:creator>
    <dc:date>2018-01-11T13:18:18Z</dc:date>
    <item>
      <title>SAS Enterprise Guide to point to Unicode SAS</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-to-point-to-Unicode-SAS/m-p/426355#M27466</link>
      <description>&lt;P&gt;Hi Communities,&lt;/P&gt;&lt;P&gt;I&amp;nbsp;Encountered some coding problems, it's weired and frustrated.&lt;/P&gt;&lt;P&gt;Background:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;My SAS program is encoding in UTF-8, contains some Chinese characters, and output some charts.&lt;/LI&gt;&lt;LI&gt;It works well in SAS Display Manager with UTF-8 encoding and the charts also shows good.&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture2.PNG" style="width: 494px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/17746iD82D48BAF665E54D/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture2.PNG" alt="Capture2.PNG" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;LI&gt;When it comes to EG, and setting UTF-8 encoding in the session. The label in axis becomes&amp;nbsp;g&lt;SPAN&gt;arbled&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 488px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/17747i36B6E933D46E6791/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt;I dont's know why. But I guess it is the encoding of SAS behind EG is not UTF-8.&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt;Does anyone has some idea in that?&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;SPAN class=""&gt;Thanks for&lt;/SPAN&gt; &lt;SPAN class=""&gt;any&lt;/SPAN&gt; &lt;SPAN class=""&gt;help&lt;/SPAN&gt; &lt;SPAN class=""&gt;on&lt;/SPAN&gt; &lt;SPAN class=""&gt;the matter&lt;/SPAN&gt;.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Wed, 10 Jan 2018 09:57:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-to-point-to-Unicode-SAS/m-p/426355#M27466</guid>
      <dc:creator>ChaseLiu</dc:creator>
      <dc:date>2018-01-10T09:57:26Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Enterprise Guide to point to Unicode SAS</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-to-point-to-Unicode-SAS/m-p/426356#M27467</link>
      <description>&lt;P&gt;Get in contact with your SAS server admin(s), so that your SAS backend is configured to work with UTF-8 globally.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2018 09:59:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-to-point-to-Unicode-SAS/m-p/426356#M27467</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-01-10T09:59:41Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Enterprise Guide to point to Unicode SAS</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-to-point-to-Unicode-SAS/m-p/426357#M27468</link>
      <description>&lt;P&gt;Check for the value of the ENCODING option in your EG workspoace server session. Submit the following code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc options option=encoding;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You want this to be&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;24         proc options option=encoding; run;

    SAS (r) Proprietary Software Release 9.4  TS1M4

 ENCODING=&lt;STRONG&gt;UTF-8&lt;/STRONG&gt;    Specifies the default character-set encoding for the SAS session.
NOTE: PROCEDURE OPTIONS used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds&lt;/PRE&gt;
&lt;P&gt;but likely you get&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;24         proc options option=encoding; run;

    SAS (r) Proprietary Software Release 9.4  TS1M4

 ENCODING=&lt;STRONG&gt;LATIN1&lt;/STRONG&gt;   Specifies the default character-set encoding for the SAS session.
NOTE: PROCEDURE OPTIONS used (Total process time):&lt;/PRE&gt;
&lt;P&gt;Your SAS administrator will have to make the appropriate changes to the server configuration. This is not a trivial change if this is a server based installation as there is impact on existing data and potentially multiple users will be involved. If you are running a local server you will be the only one but still existing data sets with Latin encoding will have to be migrated or performance will be hurt. So in any case it is not a simple toggle.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps,&lt;/P&gt;
&lt;P&gt;-- Jan.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2018 10:17:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-to-point-to-Unicode-SAS/m-p/426357#M27468</guid>
      <dc:creator>jklaverstijn</dc:creator>
      <dc:date>2018-01-10T10:17:18Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Enterprise Guide to point to Unicode SAS</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-to-point-to-Unicode-SAS/m-p/426786#M27483</link>
      <description>&lt;P&gt;Hi jklaverstijn,&lt;/P&gt;&lt;P&gt;Thanks very much for your kindly help.&lt;/P&gt;&lt;P&gt;I checked my setting in EG and it' &lt;STRONG&gt;UTF-8, &lt;/STRONG&gt;and the chart label get garbled.&lt;/P&gt;&lt;P&gt;However, in SAS DM, the encoding is&amp;nbsp;&lt;STRONG&gt;EUC-CN&lt;/STRONG&gt;, and the chart label shows good.&lt;/P&gt;&lt;P&gt;It seems that the UTF-8 encoding in SAS EG can't encode Chinese characters correctly.&lt;/P&gt;&lt;P&gt;Do you know any way to change the server encoding in SAS EG? I'd like to change the encoding to EUC-CN. it's a local server.&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2018 06:27:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-to-point-to-Unicode-SAS/m-p/426786#M27483</guid>
      <dc:creator>ChaseLiu</dc:creator>
      <dc:date>2018-01-11T06:27:20Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Enterprise Guide to point to Unicode SAS</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-to-point-to-Unicode-SAS/m-p/426860#M27485</link>
      <description>&lt;P&gt;Now we must find out where the UTF-8 setting comes from. On the same workstation I would expect your DMS session to be the same SAS installation/configuration. You can check this by looking at the EG's Help --&amp;gt; About. Click Configuration Details and see what the value of SAS System Command is. If it contains a -config option then that option points to a file on your PC that would contain the encoding option currently in effect. Alternatively this file could include another one (with "_usermods" in its name) that sets this option. Can you have a look and paste the value in this conversation? we can then work from there.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;-- Jan.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2018 13:18:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-to-point-to-Unicode-SAS/m-p/426860#M27485</guid>
      <dc:creator>jklaverstijn</dc:creator>
      <dc:date>2018-01-11T13:18:18Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Enterprise Guide to point to Unicode SAS</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-to-point-to-Unicode-SAS/m-p/426862#M27486</link>
      <description>&lt;P&gt;Running the below will tell you where the value was loaded from. Saves a ton of time troubleshooting...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc options option=encoding value;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 11 Jan 2018 13:27:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-to-point-to-Unicode-SAS/m-p/426862#M27486</guid>
      <dc:creator>nhvdwalt</dc:creator>
      <dc:date>2018-01-11T13:27:11Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Enterprise Guide to point to Unicode SAS</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-to-point-to-Unicode-SAS/m-p/427108#M27505</link>
      <description>&lt;P&gt;Hi jan,&lt;/P&gt;&lt;P&gt;I checked my config followed by the process you listed, found that the config is pointing to UTF-8 config.&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;C:\PROGRA~1\SASHome\SASFOU~1\9.4\SAS.EXE -config C:\PROGRA~1\SASHome\SASFOU~1\9.4\sasv9.cfg -objectserver -nologo -noterminal -noprngetlist&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;After that, it occures to me that I have two way to solve my problem:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Change the SAS System Command that executed, pointed the -config to other language config file.&lt;/LI&gt;&lt;LI&gt;Manually Change the sasv9.cfg that EG is currently pointing, set the config to other language config file&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;By the first solution, I followed the method from &lt;A title="Posts by Chris Hemedinger" href="https://blogs.sas.com/content/sasdummy/2009/11/19/using-the-x-and-systask-commands-from-sas-enterprise-guide/" target="_blank" rel="author"&gt;Chris Hemedinger&lt;/A&gt;:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;&lt;SPAN&gt;You can change the registered SAS command that SAS Enterprise Guide uses in order to remove the -NOXCMD startup option. But since this involves&amp;nbsp;&lt;/SPAN&gt;&lt;A title="yuck." href="http://support.sas.com/rnd/itech/doc9/admin_oma/sasserver/startserv/cmd_com.html" target="_blank"&gt;unseemly interaction with the Windows registry&lt;/A&gt;&lt;SPAN&gt;, you might prefer to use a tool that does this for you. I've placed&amp;nbsp;&lt;/SPAN&gt;&lt;A title="It's a zip file. Download, extract, run." href="http://support.sas.com/documentation/onlinedoc/guide/blog/RegisterSasCommand.zip" target="_blank"&gt;such a tool here&lt;/A&gt;&lt;SPAN&gt;. (It's a ZIP file that contains a program and a ReadMe.txt file with instructions.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;SPAN&gt;I changed the command, but it has no effect. I don't know how.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;So I switch to the second solution: &lt;/SPAN&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;&lt;SPAN&gt;changed the sasv9.cfg the EG is currently pointing.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;SPAN&gt;And it worked!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks very much for your &lt;A target="_blank"&gt;assistance!&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BLOCKQUOTE&gt;&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Fri, 12 Jan 2018 05:47:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-to-point-to-Unicode-SAS/m-p/427108#M27505</guid>
      <dc:creator>ChaseLiu</dc:creator>
      <dc:date>2018-01-12T05:47:39Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Enterprise Guide to point to Unicode SAS</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-to-point-to-Unicode-SAS/m-p/427109#M27506</link>
      <description>Yes, I found I know the encoding but I don't know how to change the encoding.</description>
      <pubDate>Fri, 12 Jan 2018 05:49:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Enterprise-Guide-to-point-to-Unicode-SAS/m-p/427109#M27506</guid>
      <dc:creator>ChaseLiu</dc:creator>
      <dc:date>2018-01-12T05:49:18Z</dc:date>
    </item>
  </channel>
</rss>

