<?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 Error while loading SAS data into Teradata table. in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Error-while-loading-SAS-data-into-Teradata-table/m-p/47189#M9754</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The error is coming at the insert into step. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even when I am running the code that you provided, I am getting the same error. I have never encountered this error before. Is it possible that some kind of teradata driver missing from my PC?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 Mar 2012 16:27:40 GMT</pubDate>
    <dc:creator>rookie72</dc:creator>
    <dc:date>2012-03-28T16:27:40Z</dc:date>
    <item>
      <title>Error while loading SAS data into Teradata table.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Error-while-loading-SAS-data-into-Teradata-table/m-p/47187#M9752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to load sas dataset into teradata table. I am creating a new teradata table and then using insert into statement to load the data from SAS dataset to teradata table. I have written the following code to achieve the goal. But I am getting the following error message. I have never encounter this error message before and I have no idea what this means. Can some one please help me out to resolve this issue?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 12pt;"&gt;ERROR: Commit: Options Parcel information is invalid.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 12pt;"&gt;ERROR: ROLLBACK issued due to errors for data set TERAU.sa_dca.DATA.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 12pt;"&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;libname terau teradata user=xxxx pass="&amp;amp;xxx" tdpid=xxx database=xxxxxx bulkload=yes;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql; &lt;BR /&gt;connect to teradata(user=xxxx pass="&amp;amp;xxx" tdpid=xxx); &lt;BR /&gt;exec(commit) by teradata; &lt;BR /&gt;exec(drop table sa_dca) by teradata; &lt;BR /&gt;exec(commit) by teradata; &lt;BR /&gt;disconnect from teradata; &lt;BR /&gt;quit; &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;proc sql; &lt;BR /&gt;connect to teradata(user=xxxx pass="&amp;amp;xxx" tdpid=xxx ); &lt;BR /&gt;exec (commit) by teradata; &lt;BR /&gt;exec (create table sa_dca &lt;BR /&gt;(var1 float&lt;BR /&gt;) &lt;BR /&gt;primary index (var1)) by teradata; &lt;BR /&gt;exec (commit) by teradata; &lt;BR /&gt;quit; &lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql; &lt;BR /&gt;insert into terau.sa_dca (FastLoad=yes Sessions=4) &lt;BR /&gt;( select var1&lt;BR /&gt;from dcindex); &lt;BR /&gt;quit; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2012 15:41:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Error-while-loading-SAS-data-into-Teradata-table/m-p/47187#M9752</guid>
      <dc:creator>rookie72</dc:creator>
      <dc:date>2012-03-28T15:41:27Z</dc:date>
    </item>
    <item>
      <title>Error while loading SAS data into Teradata table.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Error-while-loading-SAS-data-into-Teradata-table/m-p/47188#M9753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Where did the error occur?&lt;/P&gt;&lt;P&gt;Also why are you working so hard to drop/define the tables? Just tell SAS to do it.&lt;/P&gt;&lt;P&gt;Something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #eef4f9;"&gt;libname terau teradata user=xxxx pass="&amp;amp;xxx" tdpid=xxx database=xxxxxx bulkload=yes;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #eef4f9;"&gt;proc sql noprint;&lt;/P&gt;&lt;P style="background-color: #eef4f9;"&gt;&amp;nbsp; drop table terau.sa_dca;&lt;/P&gt;&lt;P style="background-color: #eef4f9;"&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #eef4f9;"&gt;data terau.sa_dca (fastload=yes dbcreate_table_opts=''primary index(var1)'' );&lt;/P&gt;&lt;P style="background-color: #eef4f9;"&gt;&amp;nbsp; set dcindex (keep=var1);&lt;/P&gt;&lt;P style="background-color: #eef4f9;"&gt;quit;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2012 15:50:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Error-while-loading-SAS-data-into-Teradata-table/m-p/47188#M9753</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2012-03-28T15:50:07Z</dc:date>
    </item>
    <item>
      <title>Error while loading SAS data into Teradata table.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Error-while-loading-SAS-data-into-Teradata-table/m-p/47189#M9754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The error is coming at the insert into step. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even when I am running the code that you provided, I am getting the same error. I have never encountered this error before. Is it possible that some kind of teradata driver missing from my PC?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2012 16:27:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Error-while-loading-SAS-data-into-Teradata-table/m-p/47189#M9754</guid>
      <dc:creator>rookie72</dc:creator>
      <dc:date>2012-03-28T16:27:40Z</dc:date>
    </item>
    <item>
      <title>Error while loading SAS data into Teradata table.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Error-while-loading-SAS-data-into-Teradata-table/m-p/47190#M9755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Best to ask SAS Support. They have SAS/Teradata joint team that has been very helpful to me for the little I have used Teradata so far.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2012 16:30:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Error-while-loading-SAS-data-into-Teradata-table/m-p/47190#M9755</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2012-03-28T16:30:11Z</dc:date>
    </item>
  </channel>
</rss>

