<?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 Teradata execute: The Maximum Possible Row Length in the Table is too Large.. in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Teradata-execute-The-Maximum-Possible-Row-Length-in-the-Table-is/m-p/459902#M116855</link>
    <description>&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the past, the following code has worked for me in moving a data set containing 14 million rows into Teradata without a hiccup.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%put *** rchtera;
%dbcon(rchtera);
%libdbcon(tera,rchtera, dsw_raroc);

proc sql;
create table tera.LMA_1712 (fastload=yes sessions=4 tenacity=5 sleep=5 dbcommit=100000) as
select *
from data.LMA_1712_1;
quit; &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;However this happened when I tried to do the same with another dataset I have:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ERROR: Error attempting to CREATE a DBMS table. ERROR: Teradata execute: The Maximum Possible Row Length in the Table is too Large.. So&amp;nbsp;I divided&amp;nbsp;my data into smaller datasets yet still no luck. Even cutting down the number of rows and dropping columns I don't need, I still get this error even when USCF_raw contains less than 600 rows. What can I do to get over this?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
create table tera.USCF_acclv_CO_Rcv (fastload=yes dbcommit=10000) as
select *
from myQRE.USCF_raw;
quit; &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks again for any input.&lt;/P&gt;</description>
    <pubDate>Fri, 04 May 2018 00:17:26 GMT</pubDate>
    <dc:creator>Bankshot</dc:creator>
    <dc:date>2018-05-04T00:17:26Z</dc:date>
    <item>
      <title>Teradata execute: The Maximum Possible Row Length in the Table is too Large..</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Teradata-execute-The-Maximum-Possible-Row-Length-in-the-Table-is/m-p/459902#M116855</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the past, the following code has worked for me in moving a data set containing 14 million rows into Teradata without a hiccup.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%put *** rchtera;
%dbcon(rchtera);
%libdbcon(tera,rchtera, dsw_raroc);

proc sql;
create table tera.LMA_1712 (fastload=yes sessions=4 tenacity=5 sleep=5 dbcommit=100000) as
select *
from data.LMA_1712_1;
quit; &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;However this happened when I tried to do the same with another dataset I have:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ERROR: Error attempting to CREATE a DBMS table. ERROR: Teradata execute: The Maximum Possible Row Length in the Table is too Large.. So&amp;nbsp;I divided&amp;nbsp;my data into smaller datasets yet still no luck. Even cutting down the number of rows and dropping columns I don't need, I still get this error even when USCF_raw contains less than 600 rows. What can I do to get over this?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
create table tera.USCF_acclv_CO_Rcv (fastload=yes dbcommit=10000) as
select *
from myQRE.USCF_raw;
quit; &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks again for any input.&lt;/P&gt;</description>
      <pubDate>Fri, 04 May 2018 00:17:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Teradata-execute-The-Maximum-Possible-Row-Length-in-the-Table-is/m-p/459902#M116855</guid>
      <dc:creator>Bankshot</dc:creator>
      <dc:date>2018-05-04T00:17:26Z</dc:date>
    </item>
    <item>
      <title>Re: Teradata execute: The Maximum Possible Row Length in the Table is too Large..</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Teradata-execute-The-Maximum-Possible-Row-Length-in-the-Table-is/m-p/459906#M116856</link>
      <description>&lt;P&gt;if you teradata sql assistant&amp;nbsp;check whether you character column which is very long. do a describe table in SAS for teradta table using libname or do a show table in Teradata SQL assistant.&lt;/P&gt;</description>
      <pubDate>Fri, 04 May 2018 02:09:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Teradata-execute-The-Maximum-Possible-Row-Length-in-the-Table-is/m-p/459906#M116856</guid>
      <dc:creator>kiranv_</dc:creator>
      <dc:date>2018-05-04T02:09:29Z</dc:date>
    </item>
    <item>
      <title>Re: Teradata execute: The Maximum Possible Row Length in the Table is too Large..</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Teradata-execute-The-Maximum-Possible-Row-Length-in-the-Table-is/m-p/459914#M116860</link>
      <description>&lt;P&gt;The message is about row length, so splitting the table while keeping the same row length is not helping.&lt;/P&gt;
&lt;P&gt;Have a look at your variables to see what could be causing the issue as&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/37783"&gt;@kiranv_&lt;/a&gt;&amp;nbsp;said. Can you shorten or remove some of them?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 04 May 2018 03:22:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Teradata-execute-The-Maximum-Possible-Row-Length-in-the-Table-is/m-p/459914#M116860</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2018-05-04T03:22:16Z</dc:date>
    </item>
  </channel>
</rss>

