<?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 How to create teradata error tables in taradata work database in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-teradata-error-tables-in-taradata-work-database/m-p/224571#M40347</link>
    <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;How to create teradata error tables in taradata work database

Problem Description:
   I have a problem to create the error tables in work database.

There are two database,
1)PSDWRPTBLDB- this is database name of teradata. here table structure already created. I don't have create and drop table access
on this database, i have only access to insert the records.
2)PSDWTPTBLDB- this is the database name where i can create and drop table also i can insert the records in table.

i want to insert the records into PSDWRPTBLDB.CLASS table using fastload or bulkload facilities of SAS(teradata).

i have tried the following script but there is error that user don't have create table access. please advise me on the exact issue.
please provide me the solution for the same. 

libname rptbl teradata user=xxx password=xxx schema = PSDWRPTBLDB;
libname tptbl teradata user=xxx password=xxx schema = PSDWTPTBLDB;
proc append base=rptbldb.class
(TPT=YES FASTLOAD=YES
TPT_BUFFER_SIZE=64
TPT_ERROR_TABLE_1 = 'TPTBL.LOADTEST_ET'
TPT_ERROR_TABLE_2 = 'TPTBL.LOADTEST_UV'
TPT_LOG_TABLE = 'TPTBL.LOADTEST_RS') 
data=sashelp.class
;
run;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 09 Sep 2015 06:12:39 GMT</pubDate>
    <dc:creator>surajdvpatil</dc:creator>
    <dc:date>2015-09-09T06:12:39Z</dc:date>
    <item>
      <title>How to create teradata error tables in taradata work database</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-teradata-error-tables-in-taradata-work-database/m-p/224571#M40347</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;How to create teradata error tables in taradata work database

Problem Description:
   I have a problem to create the error tables in work database.

There are two database,
1)PSDWRPTBLDB- this is database name of teradata. here table structure already created. I don't have create and drop table access
on this database, i have only access to insert the records.
2)PSDWTPTBLDB- this is the database name where i can create and drop table also i can insert the records in table.

i want to insert the records into PSDWRPTBLDB.CLASS table using fastload or bulkload facilities of SAS(teradata).

i have tried the following script but there is error that user don't have create table access. please advise me on the exact issue.
please provide me the solution for the same. 

libname rptbl teradata user=xxx password=xxx schema = PSDWRPTBLDB;
libname tptbl teradata user=xxx password=xxx schema = PSDWTPTBLDB;
proc append base=rptbldb.class
(TPT=YES FASTLOAD=YES
TPT_BUFFER_SIZE=64
TPT_ERROR_TABLE_1 = 'TPTBL.LOADTEST_ET'
TPT_ERROR_TABLE_2 = 'TPTBL.LOADTEST_UV'
TPT_LOG_TABLE = 'TPTBL.LOADTEST_RS') 
data=sashelp.class
;
run;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Sep 2015 06:12:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-teradata-error-tables-in-taradata-work-database/m-p/224571#M40347</guid>
      <dc:creator>surajdvpatil</dc:creator>
      <dc:date>2015-09-09T06:12:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to create teradata error tables in taradata work database</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-teradata-error-tables-in-taradata-work-database/m-p/224583#M40351</link>
      <description>&lt;P&gt;You are wanting to fasltoad (that is I assume create data level access) at the base dataset you don not have create rights for.&lt;/P&gt;&lt;P&gt;Was your intention multiload?&amp;nbsp; First solve that create error message.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Sep 2015 07:46:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-teradata-error-tables-in-taradata-work-database/m-p/224583#M40351</guid>
      <dc:creator>jakarman</dc:creator>
      <dc:date>2015-09-09T07:46:11Z</dc:date>
    </item>
  </channel>
</rss>

