<?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 SAS Viya - ODBC Connection in Developers</title>
    <link>https://communities.sas.com/t5/Developers/SAS-Viya-ODBC-Connection/m-p/634453#M696</link>
    <description>&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;I'm trying to force working SAS Viya 3.5 &amp;lt;-&amp;gt; ODBC(Exasol) connection. ( &lt;EM&gt;Driver EXASOL_ODBC-6.1.3 )&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;What I have:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Table in Exasol DB defined as&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="java"&gt;CREATE TABLE CITIES (
               CITY_ID      DECIMAL(9,0),
               COUNTRY_CODE VARCHAR(2) UTF8,
               ZIP_CODE     VARCHAR(20) UTF8,
               CITY_NAME    VARCHAR(200) UTF8,
               DISTRICT     VARCHAR(50) UTF8,
               AREA         VARCHAR(50) UTF8,
               AREA_SHORT   VARCHAR(50) UTF8,
               LAT          DECIMAL(9,6),
               LON          DECIMAL(9,6)
           );​&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;plus one row of data:&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="1.png" style="width: 890px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/37292i6529F58989F35E21/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.png" alt="1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&amp;nbsp;&lt;SPAN style="font-family: inherit;"&gt;Definition of ODBC connection:&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;caslib Exasol desc="Exasol_Caslib"
datasource=( srctype="odbc"
username="c64"
password="..."
odbc_dsn="exasol"
SCHEMA="C64"
)
libref=Exasol ;&lt;/CODE&gt;&lt;/PRE&gt;&lt;UL&gt;&lt;LI&gt;loading data&lt;/LI&gt;&lt;/UL&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc casutil incaslib="Exasol" outcaslib="Exasol" ;
  droptable casdata="CITIES" quiet;
	load   casdata="CITIES" 
	datasourceoptions=(	SCHEMA="C64" )
	VARS=(	(NAME="CITY_ID" NFL=9 NFD=0)
			(NAME="COUNTRY_CODE")
           (NAME="ZIP_CODE"    )
           (NAME="CITY_NAME"   )
           (NAME="DISTRICT"    )
           (NAME="AREA"        )
           (NAME="AREA_SHORT"  )
			(NAME="LAT" NFL=9 NFD=6)
 			(NAME="LON" NFL=9 NFD=6)
		)
    casout="CITIES";
quit;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;as a result I got:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
select * from Exasol.CITIES;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;ERROR: Invalid characters were present in the data.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;ERROR: An error occurred while processing text data.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;ERROR: Invalid characters were present in the data.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;ERROR: An error occurred while processing text data.&lt;/FONT&gt;&lt;BR /&gt;NOTE: PROC SQL set option NOEXEC and will continue to check the syntax of statements.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="2.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/37294iBD7BBAC46DD6CCC2/image-size/large?v=v2&amp;amp;px=999" role="button" title="2.png" alt="2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;After I tried to use&amp;nbsp;CLIENT_ENCODING&amp;nbsp;&lt;CODE class=" language-sas"&gt;"UTF-16"&lt;/CODE&gt; parameter&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;caslib Exasol desc="Exasol_Caslib"
     datasource=( srctype="odbc"
                  username="c64"
                  password="..."
                  odbc_dsn="exasol"
	SCHEMA="C64"
  CLIENT_ENCODING="UTF-16" 
				)
libref=Exasol ;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Data extracted correctly,&amp;nbsp;but I have new &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;ERROR&lt;/STRONG&gt; &lt;/FONT&gt;when I'm trying save table:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc casutil incaslib="Exasol" outcaslib="Exasol" ;
	SAVE  CASDATA="CITIES"
		  CASout="CITIES"
	datasourceoptions=( SCHEMA="C64" )
replace
 ;quit;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P class="lia-indent-padding-left-30px"&gt;83 ! SAVE CASDATA="CITIES"&lt;BR /&gt;84 CASout="CITIES"&lt;BR /&gt;85 datasourceoptions=( SCHEMA="C64" )&lt;BR /&gt;86 replace&lt;BR /&gt;87 ;quit;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;NOTE: Executing action 'table.save'.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;NOTE: Performing serial SaveTable action using SAS Data Connector to ODBC.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;ERROR: Invalid attribute/option identifier&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;NOTE: The target table has been dropped due to a failure during the Save action.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;ERROR: Function failed.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;ERROR: The action stopped due to errors.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;NOTE: Action 'table.save' used (Total process time):&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;NOTE: The Cloud Analytic Services server processed the request in 0.579997 seconds.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;ERROR: Failed to save the table "CITIES" from the "Exasol" caslib to the "Exasol" caslib.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/FONT&gt;&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, now, I'm run out of ideas what else I could try.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Do you know why I need use UTF-16 for fetching data if both Exasol and SAS are using UTF-8 ?&lt;/LI&gt;&lt;LI&gt;What wrong with saving data ? (&lt;STRONG&gt;this is more crucial question&lt;/STRONG&gt;) Should I use something else for saving table from CAS to ODBC ?&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Thanks for any hint.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 24 Mar 2020 15:05:02 GMT</pubDate>
    <dc:creator>DionisMotor</dc:creator>
    <dc:date>2020-03-24T15:05:02Z</dc:date>
    <item>
      <title>SAS Viya - ODBC Connection</title>
      <link>https://communities.sas.com/t5/Developers/SAS-Viya-ODBC-Connection/m-p/634453#M696</link>
      <description>&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;I'm trying to force working SAS Viya 3.5 &amp;lt;-&amp;gt; ODBC(Exasol) connection. ( &lt;EM&gt;Driver EXASOL_ODBC-6.1.3 )&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;What I have:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Table in Exasol DB defined as&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="java"&gt;CREATE TABLE CITIES (
               CITY_ID      DECIMAL(9,0),
               COUNTRY_CODE VARCHAR(2) UTF8,
               ZIP_CODE     VARCHAR(20) UTF8,
               CITY_NAME    VARCHAR(200) UTF8,
               DISTRICT     VARCHAR(50) UTF8,
               AREA         VARCHAR(50) UTF8,
               AREA_SHORT   VARCHAR(50) UTF8,
               LAT          DECIMAL(9,6),
               LON          DECIMAL(9,6)
           );​&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;plus one row of data:&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="1.png" style="width: 890px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/37292i6529F58989F35E21/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.png" alt="1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&amp;nbsp;&lt;SPAN style="font-family: inherit;"&gt;Definition of ODBC connection:&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;caslib Exasol desc="Exasol_Caslib"
datasource=( srctype="odbc"
username="c64"
password="..."
odbc_dsn="exasol"
SCHEMA="C64"
)
libref=Exasol ;&lt;/CODE&gt;&lt;/PRE&gt;&lt;UL&gt;&lt;LI&gt;loading data&lt;/LI&gt;&lt;/UL&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc casutil incaslib="Exasol" outcaslib="Exasol" ;
  droptable casdata="CITIES" quiet;
	load   casdata="CITIES" 
	datasourceoptions=(	SCHEMA="C64" )
	VARS=(	(NAME="CITY_ID" NFL=9 NFD=0)
			(NAME="COUNTRY_CODE")
           (NAME="ZIP_CODE"    )
           (NAME="CITY_NAME"   )
           (NAME="DISTRICT"    )
           (NAME="AREA"        )
           (NAME="AREA_SHORT"  )
			(NAME="LAT" NFL=9 NFD=6)
 			(NAME="LON" NFL=9 NFD=6)
		)
    casout="CITIES";
quit;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;as a result I got:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
select * from Exasol.CITIES;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;ERROR: Invalid characters were present in the data.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;ERROR: An error occurred while processing text data.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;ERROR: Invalid characters were present in the data.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;ERROR: An error occurred while processing text data.&lt;/FONT&gt;&lt;BR /&gt;NOTE: PROC SQL set option NOEXEC and will continue to check the syntax of statements.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="2.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/37294iBD7BBAC46DD6CCC2/image-size/large?v=v2&amp;amp;px=999" role="button" title="2.png" alt="2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;After I tried to use&amp;nbsp;CLIENT_ENCODING&amp;nbsp;&lt;CODE class=" language-sas"&gt;"UTF-16"&lt;/CODE&gt; parameter&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;caslib Exasol desc="Exasol_Caslib"
     datasource=( srctype="odbc"
                  username="c64"
                  password="..."
                  odbc_dsn="exasol"
	SCHEMA="C64"
  CLIENT_ENCODING="UTF-16" 
				)
libref=Exasol ;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Data extracted correctly,&amp;nbsp;but I have new &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;ERROR&lt;/STRONG&gt; &lt;/FONT&gt;when I'm trying save table:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc casutil incaslib="Exasol" outcaslib="Exasol" ;
	SAVE  CASDATA="CITIES"
		  CASout="CITIES"
	datasourceoptions=( SCHEMA="C64" )
replace
 ;quit;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P class="lia-indent-padding-left-30px"&gt;83 ! SAVE CASDATA="CITIES"&lt;BR /&gt;84 CASout="CITIES"&lt;BR /&gt;85 datasourceoptions=( SCHEMA="C64" )&lt;BR /&gt;86 replace&lt;BR /&gt;87 ;quit;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;NOTE: Executing action 'table.save'.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;NOTE: Performing serial SaveTable action using SAS Data Connector to ODBC.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;ERROR: Invalid attribute/option identifier&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;NOTE: The target table has been dropped due to a failure during the Save action.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;ERROR: Function failed.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;ERROR: The action stopped due to errors.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;NOTE: Action 'table.save' used (Total process time):&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;NOTE: The Cloud Analytic Services server processed the request in 0.579997 seconds.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;ERROR: Failed to save the table "CITIES" from the "Exasol" caslib to the "Exasol" caslib.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/FONT&gt;&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, now, I'm run out of ideas what else I could try.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Do you know why I need use UTF-16 for fetching data if both Exasol and SAS are using UTF-8 ?&lt;/LI&gt;&lt;LI&gt;What wrong with saving data ? (&lt;STRONG&gt;this is more crucial question&lt;/STRONG&gt;) Should I use something else for saving table from CAS to ODBC ?&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Thanks for any hint.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2020 15:05:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/SAS-Viya-ODBC-Connection/m-p/634453#M696</guid>
      <dc:creator>DionisMotor</dc:creator>
      <dc:date>2020-03-24T15:05:02Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Viya - ODBC Connection</title>
      <link>https://communities.sas.com/t5/Developers/SAS-Viya-ODBC-Connection/m-p/635284#M705</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/318307"&gt;@DionisMotor&lt;/a&gt;.&lt;/P&gt;
&lt;P&gt;One of my colleagues suggested &lt;A href="https://support.sas.com/en/technical-support/contact-sas.html" target="_self"&gt;contacting Technical Support&lt;/A&gt; for this issue. He also referenced and SASGF paper that may shed some light from the ODBC side log. Here is his entire post:&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Sounds like a tech support issue to me, this should not happen. At the same time, you might want to reference this SASGF 2017 paper. It has a section explaining how to set debug options for SAS Data Connectors. Just search the paper for the word "debug", the info starts on page 11. It shows how proc cas; action log /…; and proc casutil; contents …; can be used to display what the ODBC driver reports in terms of data types returned to CAS. Wouldn't be surprised if that is one of the first things TS would like to know.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Thanks,&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Joe&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Mar 2020 20:42:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/SAS-Viya-ODBC-Connection/m-p/635284#M705</guid>
      <dc:creator>joeFurbee</dc:creator>
      <dc:date>2020-03-27T20:42:22Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Viya - ODBC Connection</title>
      <link>https://communities.sas.com/t5/Developers/SAS-Viya-ODBC-Connection/m-p/635441#M706</link>
      <description>&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Here is the link to the SAS Global Forum 2017 paper:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="verdana,geneva"&gt;Introduction to SAS Data Connectors and SAS Data Connect Accelerators on SAS Viya&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;FONT face="verdana,geneva"&gt;&lt;A href="https://support.sas.com/resources/papers/proceedings17/SAS0331-2017.pdf" target="_blank"&gt;https://support.sas.com/resources/papers/proceedings17/SAS0331-2017.pdf&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Vince DelGobbo&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;SAS R&amp;amp;D&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Mar 2020 20:40:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/SAS-Viya-ODBC-Connection/m-p/635441#M706</guid>
      <dc:creator>Vince_SAS</dc:creator>
      <dc:date>2020-03-27T20:40:34Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Viya - ODBC Connection</title>
      <link>https://communities.sas.com/t5/Developers/SAS-Viya-ODBC-Connection/m-p/635755#M708</link>
      <description>&lt;P&gt;Thanks a lot for a hint.&amp;nbsp; Debug information was really helpful.&lt;/P&gt;&lt;P&gt;I'm in contact with SAS support now. Let's hope we could solve this issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And side question: according to what I see in logs/documentation - when I'm trying "&lt;EM&gt;save table&lt;/EM&gt;" to ODBC library I &lt;STRONG&gt;can't&lt;/STRONG&gt; &lt;STRONG&gt;append&lt;/STRONG&gt; data to already existing table.&lt;/P&gt;&lt;P&gt;Either SAS expecting no target table or with &lt;STRONG&gt;replace&lt;/STRONG&gt; option SAS just remove it and recreate with own DDL. Did I miss such possibility or it is undocumented function?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Denys&lt;/P&gt;</description>
      <pubDate>Mon, 30 Mar 2020 10:01:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/SAS-Viya-ODBC-Connection/m-p/635755#M708</guid>
      <dc:creator>DionisMotor</dc:creator>
      <dc:date>2020-03-30T10:01:42Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Viya - ODBC Connection</title>
      <link>https://communities.sas.com/t5/Developers/SAS-Viya-ODBC-Connection/m-p/637265#M713</link>
      <description>&lt;P&gt;After discussion with&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;SAS support&amp;nbsp; :&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Next line in odbc.ini on server could help with loading data&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;ENCODING =UTF8 &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Apr 2020 13:36:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/SAS-Viya-ODBC-Connection/m-p/637265#M713</guid>
      <dc:creator>DionisMotor</dc:creator>
      <dc:date>2020-04-03T13:36:52Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Viya - ODBC Connection</title>
      <link>https://communities.sas.com/t5/Developers/SAS-Viya-ODBC-Connection/m-p/638718#M729</link>
      <description>So, FYI, final solution was : do not use ODBC &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;We switched to JDBC driver and it works better. I'm still have open question about performance, but I guess this also will be solved.</description>
      <pubDate>Thu, 09 Apr 2020 16:03:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/SAS-Viya-ODBC-Connection/m-p/638718#M729</guid>
      <dc:creator>DionisMotor</dc:creator>
      <dc:date>2020-04-09T16:03:35Z</dc:date>
    </item>
  </channel>
</rss>

