<?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: Import data with special character from Oracle to SAS EG in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Import-data-with-special-character-from-Oracle-to-SAS-EG/m-p/672004#M201872</link>
    <description>Hi Smantha,&lt;BR /&gt;TQ for your reply.&lt;BR /&gt;when I run below script, it shows that my SAS session is = LATIN1&lt;BR /&gt;&lt;BR /&gt;proc options option=encoding; run;&lt;BR /&gt;&lt;BR /&gt;may I know what encoding option do I have to change to ensure SAS captured the special character from Oracle?</description>
    <pubDate>Fri, 24 Jul 2020 03:26:12 GMT</pubDate>
    <dc:creator>Hhh111</dc:creator>
    <dc:date>2020-07-24T03:26:12Z</dc:date>
    <item>
      <title>Import data with special character from Oracle to SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-data-with-special-character-from-Oracle-to-SAS-EG/m-p/671993#M201868</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I need help how to include special character that extracted from Oracle database. I've used Encoding as per below script, however symbol like "1/2" interpreted as "?" in SAS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ERROR.PNG" style="width: 200px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/47626i8A0DB8C16BC28A77/image-size/small?v=v2&amp;amp;px=200" role="button" title="ERROR.PNG" alt="ERROR.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC SQL NOPRINT;
                CONNECT TO ODBC (DSN=OracleODBC UID='XXX' PWD='12345');

                CREATE TABLE TEST (COMPRESS=YES ENCODING='UTF-8') AS 
                
                SELECT     *
                FROM CONNECTION TO ODBC 
                (
                SELECT     *
                FROM &amp;amp;TABLE 
	
                )

                ;
                DISCONNECT FROM ODBC;
QUIT;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/DIV&gt;</description>
      <pubDate>Fri, 24 Jul 2020 01:14:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-data-with-special-character-from-Oracle-to-SAS-EG/m-p/671993#M201868</guid>
      <dc:creator>Hhh111</dc:creator>
      <dc:date>2020-07-24T01:14:58Z</dc:date>
    </item>
    <item>
      <title>Re: Import data with special character from Oracle to SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-data-with-special-character-from-Oracle-to-SAS-EG/m-p/672002#M201871</link>
      <description>&lt;P&gt;Is your SAS session UTF-8 /unicode if not eevnthough the data read is utf-8 it may not display correctly in your session. you can change this by changing the encoding option.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jul 2020 03:18:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-data-with-special-character-from-Oracle-to-SAS-EG/m-p/672002#M201871</guid>
      <dc:creator>smantha</dc:creator>
      <dc:date>2020-07-24T03:18:51Z</dc:date>
    </item>
    <item>
      <title>Re: Import data with special character from Oracle to SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-data-with-special-character-from-Oracle-to-SAS-EG/m-p/672004#M201872</link>
      <description>Hi Smantha,&lt;BR /&gt;TQ for your reply.&lt;BR /&gt;when I run below script, it shows that my SAS session is = LATIN1&lt;BR /&gt;&lt;BR /&gt;proc options option=encoding; run;&lt;BR /&gt;&lt;BR /&gt;may I know what encoding option do I have to change to ensure SAS captured the special character from Oracle?</description>
      <pubDate>Fri, 24 Jul 2020 03:26:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-data-with-special-character-from-Oracle-to-SAS-EG/m-p/672004#M201872</guid>
      <dc:creator>Hhh111</dc:creator>
      <dc:date>2020-07-24T03:26:12Z</dc:date>
    </item>
    <item>
      <title>Re: Import data with special character from Oracle to SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-data-with-special-character-from-Oracle-to-SAS-EG/m-p/672005#M201873</link>
      <description>&lt;P&gt;&lt;A href="https://communities.sas.com/t5/Administration-and-Deployment/How-to-Change-Encoding-from-WLATIN1-to-UTF-8-in-SAS-Enterprise/td-p/597234" target="_blank"&gt;https://communities.sas.com/t5/Administration-and-Deployment/How-to-Change-Encoding-from-WLATIN1-to-UTF-8-in-SAS-Enterprise/td-p/597234&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/Change-Encoding-using-SAS-Enterprise-Guide-Windowing-Environment/ta-p/597621" target="_blank"&gt;https://communities.sas.com/t5/SAS-Communities-Library/Change-Encoding-using-SAS-Enterprise-Guide-Windowing-Environment/ta-p/597621&lt;/A&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;</description>
      <pubDate>Fri, 24 Jul 2020 03:37:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-data-with-special-character-from-Oracle-to-SAS-EG/m-p/672005#M201873</guid>
      <dc:creator>smantha</dc:creator>
      <dc:date>2020-07-24T03:37:18Z</dc:date>
    </item>
  </channel>
</rss>

