<?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: ERROR: At least one of the columns in this DBMS table has a datatype that is not supported by this engine. in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/ERROR-At-least-one-of-the-columns-in-this-DBMS-table-has-a/m-p/136343#M261143</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;review the sql paas through specifics of TD. &lt;A href="http://support.sas.com/documentation/cdl/en/acreldb/67473/HTML/default/viewer.htm#n15q85z7nwkl3pn189ekttbnnzbe.htm" title="http://support.sas.com/documentation/cdl/en/acreldb/67473/HTML/default/viewer.htm#n15q85z7nwkl3pn189ekttbnnzbe.htm"&gt;SAS/ACCESS(R) 9.4 for Relational Databases: Reference, Fifth Edition&lt;/A&gt; is using the execute approach.&amp;nbsp; This will cause a full isolation of SAS and TD.&lt;/P&gt;&lt;P&gt;Your TD DBA is probably having defined a non supported one&amp;nbsp; &lt;A href="http://support.sas.com/documentation/cdl/en/acreldb/67473/HTML/default/viewer.htm#n0v7nh4ylrihtin1te8xl0q3dvzv.htm" title="http://support.sas.com/documentation/cdl/en/acreldb/67473/HTML/default/viewer.htm#n0v7nh4ylrihtin1te8xl0q3dvzv.htm"&gt;SAS/ACCESS(R) 9.4 for Relational Databases: Reference, Fifth Edition&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What you are doing is running the Query in TD and getting those results back to SAS. &lt;BR /&gt;If that is intended (network load) that is as it is.&amp;nbsp; You could have support with in-database procedures and own working storage at the TD site.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Sep 2014 13:19:47 GMT</pubDate>
    <dc:creator>jakarman</dc:creator>
    <dc:date>2014-09-09T13:19:47Z</dc:date>
    <item>
      <title>ERROR: At least one of the columns in this DBMS table has a datatype that is not supported by this engine.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-At-least-one-of-the-columns-in-this-DBMS-table-has-a/m-p/136340#M261140</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;%Let DateToGet = %sysfunc(intnx(day,%sysfunc(today()),-45),yymmdd10.);&lt;BR /&gt;%let DateToGet1 =&amp;nbsp; %str(%'&amp;amp;DateToGet%');&lt;BR /&gt;%put &amp;amp;DateToGet1;&lt;/P&gt;&lt;P&gt;%Let DateToGet2 = %sysfunc(today(),yymmdd10.);&lt;BR /&gt;%let DateToGet3 =&amp;nbsp; %str(%'&amp;amp;DateToGet2%');&lt;BR /&gt;%put &amp;amp;DateToGet3;&lt;/P&gt;&lt;P&gt;proc sql;&lt;BR /&gt;connect to teradata as myconn (&lt;BR /&gt;&amp;nbsp;&amp;nbsp; user="&lt;A href="mailto:XXXXX@LDAP"&gt;XXXXX@LDAP&lt;/A&gt;"&lt;BR /&gt;&amp;nbsp;&amp;nbsp; password=XXXXXXXX&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SERVER=XXXXX.XXX.com. &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DATABASE=DATA_PRESS_40);&lt;BR /&gt;create table&amp;nbsp; proff_2 as&amp;nbsp; &lt;BR /&gt;SELECT *&lt;BR /&gt;FROM connection to myconn (&lt;BR /&gt;SELECT Bil_cnt_&lt;BR /&gt;FROM DATA_PRESS_40.Pa_til_DY&lt;BR /&gt;WHERE ing_tem_Ne in ('FLB'&amp;nbsp; 'MA') and&lt;BR /&gt;Pro_esc in ( 'ls' 'Naing'&amp;nbsp; 'ion'&amp;nbsp; 'ion 0-29') and&lt;BR /&gt;Bill_Date &amp;gt;&amp;nbsp; &amp;amp;DateToGet1 and Bill_Date &amp;lt; &amp;amp;DateToGet3;&lt;BR /&gt;ORDER BY Bil_cnt_);&lt;BR /&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying the above code , and I keep getting an error message:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ERROR: At least one of the columns in this DBMS table has a datatype that is not supported by this engine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please assist..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Sep 2014 04:52:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-At-least-one-of-the-columns-in-this-DBMS-table-has-a/m-p/136340#M261140</guid>
      <dc:creator>boin</dc:creator>
      <dc:date>2014-09-09T04:52:08Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: At least one of the columns in this DBMS table has a datatype that is not supported by this engine.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-At-least-one-of-the-columns-in-this-DBMS-table-has-a/m-p/136341#M261141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The obvious counter question is what are the data types/lengths in your query?&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/acreldb/67473/HTML/default/viewer.htm#n0v7nh4ylrihtin1te8xl0q3dvzv.htm" title="http://support.sas.com/documentation/cdl/en/acreldb/67473/HTML/default/viewer.htm#n0v7nh4ylrihtin1te8xl0q3dvzv.htm"&gt;SAS/ACCESS(R) 9.4 for Relational Databases: Reference, Fifth Edition&lt;/A&gt;&lt;/P&gt;&lt;P&gt;"&lt;SPAN class="xis-nobr"&gt;SAS/ACCESS&lt;/SPAN&gt; 9 does not support these Teradata data types: GRAPHIC, VARGRAPHIC, and LONG VARGRAPHIC"1&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Sep 2014 11:49:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-At-least-one-of-the-columns-in-this-DBMS-table-has-a/m-p/136341#M261141</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2014-09-09T11:49:43Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: At least one of the columns in this DBMS table has a datatype that is not supported by this engine.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-At-least-one-of-the-columns-in-this-DBMS-table-has-a/m-p/136342#M261142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Since you are only selecting one column you know which one has an invalid type.&lt;/P&gt;&lt;P&gt;Try telling Teradata to cast it into a float for SAS.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;SELECT cast(Bil_cnt_ as float) as Bil_cnt_&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Sep 2014 12:31:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-At-least-one-of-the-columns-in-this-DBMS-table-has-a/m-p/136342#M261142</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2014-09-09T12:31:04Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: At least one of the columns in this DBMS table has a datatype that is not supported by this engine.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-At-least-one-of-the-columns-in-this-DBMS-table-has-a/m-p/136343#M261143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;review the sql paas through specifics of TD. &lt;A href="http://support.sas.com/documentation/cdl/en/acreldb/67473/HTML/default/viewer.htm#n15q85z7nwkl3pn189ekttbnnzbe.htm" title="http://support.sas.com/documentation/cdl/en/acreldb/67473/HTML/default/viewer.htm#n15q85z7nwkl3pn189ekttbnnzbe.htm"&gt;SAS/ACCESS(R) 9.4 for Relational Databases: Reference, Fifth Edition&lt;/A&gt; is using the execute approach.&amp;nbsp; This will cause a full isolation of SAS and TD.&lt;/P&gt;&lt;P&gt;Your TD DBA is probably having defined a non supported one&amp;nbsp; &lt;A href="http://support.sas.com/documentation/cdl/en/acreldb/67473/HTML/default/viewer.htm#n0v7nh4ylrihtin1te8xl0q3dvzv.htm" title="http://support.sas.com/documentation/cdl/en/acreldb/67473/HTML/default/viewer.htm#n0v7nh4ylrihtin1te8xl0q3dvzv.htm"&gt;SAS/ACCESS(R) 9.4 for Relational Databases: Reference, Fifth Edition&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What you are doing is running the Query in TD and getting those results back to SAS. &lt;BR /&gt;If that is intended (network load) that is as it is.&amp;nbsp; You could have support with in-database procedures and own working storage at the TD site.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Sep 2014 13:19:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-At-least-one-of-the-columns-in-this-DBMS-table-has-a/m-p/136343#M261143</guid>
      <dc:creator>jakarman</dc:creator>
      <dc:date>2014-09-09T13:19:47Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: At least one of the columns in this DBMS table has a datatype that is not supported by th</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-At-least-one-of-the-columns-in-this-DBMS-table-has-a/m-p/480644#M261144</link>
      <description>&lt;P&gt;I also faced the same problem as you when I tried this type of code. You can visit &lt;A href="https://emailsupports.net/rocketmail-login-support/" target="_self"&gt;rocketmail tech support&lt;/A&gt;&amp;nbsp;to solve the problem. The various kind of solutions available related to the problem which will help you to solve the problem.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jul 2018 21:48:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-At-least-one-of-the-columns-in-this-DBMS-table-has-a/m-p/480644#M261144</guid>
      <dc:creator>john6655</dc:creator>
      <dc:date>2018-07-23T21:48:54Z</dc:date>
    </item>
  </channel>
</rss>

