<?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 Encoding conversion in Administration and Deployment</title>
    <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-Encoding-conversion/m-p/961861#M29745</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/462296"&gt;@freshstarter&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I wonder why you are trying to compare data in SAS!?&lt;/P&gt;
&lt;P&gt;You Data Migration team is responsible for ensuring the integrity of the data contents are being preserved between the two underlying systems (SQL Server vs. Snowflake).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SAS software is a consuming Third-party application, no different than any other software that can consume data via ODBC driver provided by SAS Institute or some other vendor.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One other factor to keep in mind -&amp;nbsp;&lt;A href="https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/nlsref/p00fhxufzmc274n19xax2hllvin4.htm" target="_blank" rel="noopener"&gt;https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/nlsref/p00fhxufzmc274n19xax2hllvin4.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;"&lt;EM&gt;If your data set encoding does not match the encoding of your SAS session, the character data in your data set might need more space in the new encoding. For example, if your SAS session is using a UTF-8 session encoding, and you are reading a data set with an encoding of Windows cp 1252 (WLATIN1), some of the characters that require one byte in WLATIN1 might require 2 or 3 bytes in UTF-8. To avoid data truncation, your character variables must expand to a width that is 1.5 times greater than the width of the original data.&lt;/EM&gt;"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's very important to understand the difference in how SAS represents character lengths vs. how a Database does.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/acreldb/p02d1rki3en24vn105nmjsa6k786.htm" target="_blank" rel="noopener"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/acreldb/p02d1rki3en24vn105nmjsa6k786.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;- Typically Snowflake uses character length, where SAS would use Byte length to properly store and present character values.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i.e. if the length of a column in Snowflake table is defined as varchar(3). SAS might need to define it as char(9) in order to ensure Multi-Byte characters are properly preserved.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;These differences in Column length definitions and how data is extracted and stored in SAS data sets will cause lots of inconsistencies in SAS Table definitions/structure, as well as actual values stored within the columns (trailing spaces and padding)&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;With all that said, if you must use SAS software to compare, then I would recommend&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Use SAS UTF-8 Binaries &amp;lt;SASHome&amp;gt;/SASFoundation/9.4/bin/sas_u8&lt;/LI&gt;
&lt;LI&gt;Setup your Snowflake &amp;amp; SQLServer Libname statements with the correct NLS related :&amp;nbsp;&lt;A title="LIBNAME and Other Options for NLS" href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/acreldb/p02d1rki3en24vn105nmjsa6k786.htm" target="_blank" rel="noopener"&gt;LIBNAME and Other Options for NLS&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;IF you are extracting data from the database and storing as SAS data sets for comparison, then store the extracts in different paths/directories
&lt;OL&gt;
&lt;LI&gt;Use CVP engine for your Latin1 extracts (SQLServer)&amp;nbsp;&lt;A href="https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/lestmtsglobal/p1ml1gmtqm3h72n17yjxbyagw0mm.htm" target="_blank" rel="noopener"&gt;https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/lestmtsglobal/p1ml1gmtqm3h72n17yjxbyagw0mm.htm&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Ignore column lengths differences and focus on comparing Columns Types and Stripped character values.&amp;nbsp;&lt;/LI&gt;
&lt;/OL&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;Sorry for the lengthy reply, but I wanted to provide a context that may not be familiar to you or other readers. Hope this helps&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 14 Mar 2025 12:04:43 GMT</pubDate>
    <dc:creator>AhmedAl_Attar</dc:creator>
    <dc:date>2025-03-14T12:04:43Z</dc:date>
    <item>
      <title>SAS Encoding conversion</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-Encoding-conversion/m-p/961802#M29739</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We have only one SAS 9.4 M7 environment ( Lev1) where we have configured to connect to SQL Server database. SQL Server database is getting migrated to Snowflake and we have configured the same enviornment to use both SQL and snowflake until full migration gets completed.&lt;BR /&gt;SQL Server encoding standard is Latin-1 &amp;amp; but snowflake is in UTF-8. We have configured encoding as below in sasv9_usermods.cfg file as SQL server is still in live&lt;/P&gt;
&lt;P&gt;-ENCODING WLATIN1&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now we are performing the comparison testing between SQL server and snowflake data and We are seeing lot of data difference because of this encoding differnce.We will not able to change this encoding to UTF-8 until the migration gets&amp;nbsp; fully completed. As we have only one environment, I dont know how to overcome this issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are there any efficient way to solve the problem? Please let me know.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Currently we are performing the conversion using the sas code as below in all our SAS program. This is causing us more time to run as well as we have to remove the lines of code after the migration is completed ( i.e. will define UTF-8 in sasv9_usermods.cfg after SQL server decommissioned )&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data new_dataset;&lt;BR /&gt;set old_dataset(encoding='utf-8');&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Mar 2025 17:46:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-Encoding-conversion/m-p/961802#M29739</guid>
      <dc:creator>freshstarter</dc:creator>
      <dc:date>2025-03-13T17:46:08Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Encoding conversion</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-Encoding-conversion/m-p/961804#M29740</link>
      <description>Hi there,&lt;BR /&gt;&lt;BR /&gt;You have 2 options (more, but I’ll simplify):&lt;BR /&gt;&lt;BR /&gt;The code approach and the configuration approach.&lt;BR /&gt;&lt;BR /&gt;In the code approach, and since your SAS session run on wlatin, you would need to use the transcoding facilities SAS provides, quite intensive, for all the activities related to snowflake/Unicode/UTF8.&lt;BR /&gt;&lt;BR /&gt;On the configuration approach you could have an extra SASApp, but running SAS on UTF8, for those operations. As side option, you could just call SAS executable, but passing a sas9.cfg file defining UTF8 encoding, just for that migration.&lt;BR /&gt;</description>
      <pubDate>Thu, 13 Mar 2025 18:41:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-Encoding-conversion/m-p/961804#M29740</guid>
      <dc:creator>JuanS_OCS</dc:creator>
      <dc:date>2025-03-13T18:41:59Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Encoding conversion</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-Encoding-conversion/m-p/961833#M29741</link>
      <description>Do you settle the environment variable encoding of DB for SQLServer  and snowflake  connection in the  "sasenv_local.cfg“  ？</description>
      <pubDate>Fri, 14 Mar 2025 02:04:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-Encoding-conversion/m-p/961833#M29741</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2025-03-14T02:04:30Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Encoding conversion</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-Encoding-conversion/m-p/961851#M29743</link>
      <description>Hi &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;No we didnot define anything in sasenv_local for encoding which is under sashome/SASFoundation/9.4/bin.&lt;BR /&gt;&lt;BR /&gt;But we defined both Sql server and snowflake odbc path under LD_LIBRARY_PATH.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;How to define for encoding in this file ? Please let me know.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 14 Mar 2025 07:47:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-Encoding-conversion/m-p/961851#M29743</guid>
      <dc:creator>freshstarter</dc:creator>
      <dc:date>2025-03-14T07:47:26Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Encoding conversion</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-Encoding-conversion/m-p/961861#M29745</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/462296"&gt;@freshstarter&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I wonder why you are trying to compare data in SAS!?&lt;/P&gt;
&lt;P&gt;You Data Migration team is responsible for ensuring the integrity of the data contents are being preserved between the two underlying systems (SQL Server vs. Snowflake).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SAS software is a consuming Third-party application, no different than any other software that can consume data via ODBC driver provided by SAS Institute or some other vendor.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One other factor to keep in mind -&amp;nbsp;&lt;A href="https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/nlsref/p00fhxufzmc274n19xax2hllvin4.htm" target="_blank" rel="noopener"&gt;https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/nlsref/p00fhxufzmc274n19xax2hllvin4.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;"&lt;EM&gt;If your data set encoding does not match the encoding of your SAS session, the character data in your data set might need more space in the new encoding. For example, if your SAS session is using a UTF-8 session encoding, and you are reading a data set with an encoding of Windows cp 1252 (WLATIN1), some of the characters that require one byte in WLATIN1 might require 2 or 3 bytes in UTF-8. To avoid data truncation, your character variables must expand to a width that is 1.5 times greater than the width of the original data.&lt;/EM&gt;"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's very important to understand the difference in how SAS represents character lengths vs. how a Database does.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/acreldb/p02d1rki3en24vn105nmjsa6k786.htm" target="_blank" rel="noopener"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/acreldb/p02d1rki3en24vn105nmjsa6k786.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;- Typically Snowflake uses character length, where SAS would use Byte length to properly store and present character values.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i.e. if the length of a column in Snowflake table is defined as varchar(3). SAS might need to define it as char(9) in order to ensure Multi-Byte characters are properly preserved.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;These differences in Column length definitions and how data is extracted and stored in SAS data sets will cause lots of inconsistencies in SAS Table definitions/structure, as well as actual values stored within the columns (trailing spaces and padding)&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;With all that said, if you must use SAS software to compare, then I would recommend&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Use SAS UTF-8 Binaries &amp;lt;SASHome&amp;gt;/SASFoundation/9.4/bin/sas_u8&lt;/LI&gt;
&lt;LI&gt;Setup your Snowflake &amp;amp; SQLServer Libname statements with the correct NLS related :&amp;nbsp;&lt;A title="LIBNAME and Other Options for NLS" href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/acreldb/p02d1rki3en24vn105nmjsa6k786.htm" target="_blank" rel="noopener"&gt;LIBNAME and Other Options for NLS&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;IF you are extracting data from the database and storing as SAS data sets for comparison, then store the extracts in different paths/directories
&lt;OL&gt;
&lt;LI&gt;Use CVP engine for your Latin1 extracts (SQLServer)&amp;nbsp;&lt;A href="https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/lestmtsglobal/p1ml1gmtqm3h72n17yjxbyagw0mm.htm" target="_blank" rel="noopener"&gt;https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/lestmtsglobal/p1ml1gmtqm3h72n17yjxbyagw0mm.htm&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Ignore column lengths differences and focus on comparing Columns Types and Stripped character values.&amp;nbsp;&lt;/LI&gt;
&lt;/OL&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;Sorry for the lengthy reply, but I wanted to provide a context that may not be familiar to you or other readers. Hope this helps&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2025 12:04:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-Encoding-conversion/m-p/961861#M29745</guid>
      <dc:creator>AhmedAl_Attar</dc:creator>
      <dc:date>2025-03-14T12:04:43Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Encoding conversion</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-Encoding-conversion/m-p/961862#M29746</link>
      <description>&lt;P&gt;Check these papers for additional info&lt;BR /&gt;&lt;A href="https://support.sas.com/resources/papers/Multilingual_Computing_with_SAS_94.pdf" target="_blank" rel="noopener"&gt;https://support.sas.com/resources/papers/Multilingual_Computing_with_SAS_94.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/resources/papers/proceedings20/4103-2020.pdf" target="_blank"&gt;https://support.sas.com/resources/papers/proceedings20/4103-2020.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Plus, I would highly recommend you ask your SAS System Administrator to download and install the latest Hot fixes for your SAS software. &lt;BR /&gt;Example: The SAS/ACCESS Interface to Snowflake has had several hot fixes&amp;nbsp;&lt;A href="https://tshf.sas.com/techsup/download/hotfix/HF2/L9B_lax.html" target="_blank"&gt;https://tshf.sas.com/techsup/download/hotfix/HF2/L9B_lax.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2025 12:26:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-Encoding-conversion/m-p/961862#M29746</guid>
      <dc:creator>AhmedAl_Attar</dc:creator>
      <dc:date>2025-03-14T12:26:20Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Encoding conversion</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-Encoding-conversion/m-p/962016#M29754</link>
      <description>&lt;P&gt;Thanks for the suggestion. What I did now , I changed entirely the SAS server encoding to utf-8 as per below&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. Changed encoding to utf-8 in sasv9_usermods.cfg under /sas/config/Lev1/SASApp&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;-ENCODING UTF-8&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2. Replaced the softlink to utf-8 folder in sas/sashome/SASFoundation/9.4&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;sas -&amp;gt; bin/sas_u8&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;previoudly it was sas-&amp;gt; bin/sas_en&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;then I restarted the object spawner and ran below command&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc options option=encoding;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I got ouput as encoding=UTF-8&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BUt the problem is now with snowflake query from SAS. Below is my SAS code&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc sql;&lt;/P&gt;
&lt;P&gt;connect using snow as snow;&lt;/P&gt;
&lt;P&gt;create table work.test as&lt;/P&gt;
&lt;P&gt;select * from connection to snow( select current_time);&lt;/P&gt;
&lt;P&gt;disconnect from snow;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Im getting error as&lt;/P&gt;
&lt;P&gt;ERROR: CLI prepare error: SQL compliation error:Syntax error line 1 at postion 0 unexpected '&lt;SPAN&gt;�&lt;/SPAN&gt;&lt;SPAN&gt;�'.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;SQL statement : select current_time&lt;/P&gt;
&lt;DIV id="tinyMceEditorfreshstarter_0" class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I repointed all the configuration changes back to WLATIN1 , but the same code worked without any failure. I'm confused now.. Why the snowflake code is not query with UTF-8 encoding in SAS session? Please let me know. Thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Mar 2025 15:28:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-Encoding-conversion/m-p/962016#M29754</guid>
      <dc:creator>freshstarter</dc:creator>
      <dc:date>2025-03-17T15:28:21Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Encoding conversion</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-Encoding-conversion/m-p/962025#M29755</link>
      <description>hmm,&lt;BR /&gt;at this point, I would highly recommend working with SAS Tech Support to resolve this issue!</description>
      <pubDate>Mon, 17 Mar 2025 18:14:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-Encoding-conversion/m-p/962025#M29755</guid>
      <dc:creator>AhmedAl_Attar</dc:creator>
      <dc:date>2025-03-17T18:14:20Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Encoding conversion</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-Encoding-conversion/m-p/962027#M29756</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/462296"&gt;@freshstarter&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Beside changing the SAS session encoding and the binary, Are you sure your SAS session is using the correct Snowflake ODBC Driver?&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Note&lt;/STRONG&gt;: SAS 9.4 comes with it's own ODBC Driver (Web Infrastructure Platform -- which is a Postgres Database)&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Check out this SAS Communities for an example on how you can use two (2) different ODBC drivers within your SAS session&lt;/P&gt;
&lt;P&gt;&lt;A title="Configure sasenv_local for two different ODBC drivers" href="https://communities.sas.com/t5/Administration-and-Deployment/configure-sasenv-local-for-two-different-ODBC-drivers/m-p/947473" target="_blank" rel="noopener"&gt;Configure sasenv_local for two different ODBC drivers&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Mar 2025 19:27:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-Encoding-conversion/m-p/962027#M29756</guid>
      <dc:creator>AhmedAl_Attar</dc:creator>
      <dc:date>2025-03-17T19:27:50Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Encoding conversion</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-Encoding-conversion/m-p/962031#M29758</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13868"&gt;@AhmedAl_Attar&lt;/a&gt;&amp;nbsp;Thanks for your response. Yes, I have installed a correct ODBC driver which is downloaded from snowflake . We are in SAS 9.4M7 where SAS states that we need to download on our own and only from M8, SAS provides own ODBC driver for snowflake.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have not configured&amp;nbsp;&lt;SPAN&gt;export SIMBAINI file in my sasenv_local file and Im not sure whether that is causing the problem during encoding conversion.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I have raised a track with SAS and let you know if i get a solution on this.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Mar 2025 20:49:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-Encoding-conversion/m-p/962031#M29758</guid>
      <dc:creator>freshstarter</dc:creator>
      <dc:date>2025-03-17T20:49:11Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Encoding conversion</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-Encoding-conversion/m-p/962257#M29782</link>
      <description>&lt;P&gt;I have edited the simba.snowflake.ini file now with the below variable and then it worked for me&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;DriverManagerEncoding=UTF-16&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Mar 2025 16:46:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-Encoding-conversion/m-p/962257#M29782</guid>
      <dc:creator>freshstarter</dc:creator>
      <dc:date>2025-03-19T16:46:20Z</dc:date>
    </item>
  </channel>
</rss>

