<?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: Uploading data to a Permanent table by means of Fast Load. in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Uploading-data-to-a-Permanent-table-by-means-of-Fast-Load/m-p/80084#M7841</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want to use fastload then yes, the table must be empty.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 04 Oct 2012 03:21:32 GMT</pubDate>
    <dc:creator>Patrick</dc:creator>
    <dc:date>2012-10-04T03:21:32Z</dc:date>
    <item>
      <title>Uploading data to a Permanent table by means of Fast Load.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Uploading-data-to-a-Permanent-table-by-means-of-Fast-Load/m-p/80073#M7830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I recently requested a Permanent Table as a location to upload Member_Keys to quickly pull Member information from other databases.&lt;/P&gt;&lt;P&gt;The Permanent Table was given to me as "DMGMT".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, after being provided the requested table, I'm not sure how to upload the MBR_KEY's to the empty permanent table.&lt;/P&gt;&lt;P&gt;For now, my rough code is listed below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%let userid=XXXXXXX;&lt;/P&gt;&lt;P&gt;%let passtera=XXXXXX;&lt;/P&gt;&lt;P&gt;%let TDPID=tdpid;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPTIONS NOSYMBOLGEN;&lt;/P&gt;&lt;P&gt;LIBNAME TERALIB TERADATA USER=&amp;amp;userid. PASSWORD:&amp;amp;passtera. DATABASE=USERDATA_ENT_REPL MODE=teradata&lt;/P&gt;&lt;P&gt;LOGDB=USER_UTLTY_ENT TDPID=&amp;amp;tdpid. CONNECTION=global DBMSTEMP=yes SCHEMA=EDW_NOHAPHI TPT=NO;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql exec feedback stimer;&lt;/P&gt;&lt;P&gt;create table class_2 as select * from ccare.sample;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc append data=class_2 base=Teralib.DMGMT (FASTLOAD=yes);&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2012 18:00:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Uploading-data-to-a-Permanent-table-by-means-of-Fast-Load/m-p/80073#M7830</guid>
      <dc:creator>cklau</dc:creator>
      <dc:date>2012-09-28T18:00:51Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading data to a Permanent table by means of Fast Load.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Uploading-data-to-a-Permanent-table-by-means-of-Fast-Load/m-p/80074#M7831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What exactly is your question? Is your code throwing an error?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You sure know this link with all the sample code &lt;A class="active_link" href="http://support.sas.com/documentation/cdl/en/acreldb/63647/HTML/default/viewer.htm#a001405937.htm" title="http://support.sas.com/documentation/cdl/en/acreldb/63647/HTML/default/viewer.htm#a001405937.htm"&gt;http://support.sas.com/documentation/cdl/en/acreldb/63647/HTML/default/viewer.htm#a001405937.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why do you need the SQL statement where you're doing nothing than copying a table? Can't you just use the source table directly in your Proc Append statement?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc append data=ccare.sample base=Teralib.DMGMT (FASTLOAD=yes);&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also: Make sure that your source table only contains the variables which you actually need to load into the target teradata table. So may be your statement needs to look like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc append data=ccare.sample(keep=MBR_KEY) base=Teralib.DMGMT (FASTLOAD=yes);&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And then: If you need to re-fresh your table make sure you always first truncate it using some SQL pass through statement like "&lt;SPAN style="mso-fareast-font-family: 'Times New Roman';"&gt;delete from USERDATA_ENT_REPL.DMGMT all;"&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Sep 2012 03:27:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Uploading-data-to-a-Permanent-table-by-means-of-Fast-Load/m-p/80074#M7831</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2012-09-29T03:27:28Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading data to a Permanent table by means of Fast Load.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Uploading-data-to-a-Permanent-table-by-means-of-Fast-Load/m-p/80075#M7832</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for the link. I'm not sure I'm able to utilize the codes on it just yet. I feel confused in general about what parts I need to change in the current code. I'm not even sure where the Permanent table they gave me is located....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have just changed my code to include your suggested code:&lt;/P&gt;&lt;P&gt;proc append data=ccare.sample(keep=MBR_KEY) base=Teralib.DMGMT (FASTLOAD=yes);&amp;nbsp; &lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I do get errors when I run my code.&lt;/P&gt;&lt;P&gt;ERROR: Teradata connection: The user does not have CREATE TABLE access to database EDW_NOHAPHI. Correct error and restart as an &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND process with option TPT_RESTART=YES. Since no checkpoints were taken, if the previous run used FIRSTOBS=n, use the &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;same value in the restart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have just changed my password.&amp;nbsp; Yet, I should have access to that database. What do you recommend?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Oct 2012 22:17:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Uploading-data-to-a-Permanent-table-by-means-of-Fast-Load/m-p/80075#M7832</guid>
      <dc:creator>cklau</dc:creator>
      <dc:date>2012-10-01T22:17:59Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading data to a Permanent table by means of Fast Load.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Uploading-data-to-a-Permanent-table-by-means-of-Fast-Load/m-p/80076#M7833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Didn't you write that the Teradata table has been created for you? If so then you would &lt;STRONG&gt;NOT&lt;/STRONG&gt; need "create" access - you only need read, update and delete.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Proc Append will try and create the target table for you if it doesn't exist (but only then).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best practice is to create Teradata tables using native Teradata SQL code. Also best practice is to load tables indirectly via a view (but that's may be not required in your case).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you need to create the table - or is this something which will be done for you?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Patrick Matter added the NOT to my post&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Oct 2012 01:04:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Uploading-data-to-a-Permanent-table-by-means-of-Fast-Load/m-p/80076#M7833</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2012-10-02T01:04:21Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading data to a Permanent table by means of Fast Load.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Uploading-data-to-a-Permanent-table-by-means-of-Fast-Load/m-p/80077#M7834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The Teradata Team at my company created the Permanent table for me, supposedly. I actually don't know where that table is located on the server either... which I feel is a problem as well.&amp;nbsp; I'm still quite a beginner at SAS programing and I don't feel adequate to alter the code... I'm lost at times on what to replace, and where...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I asked the same Teradata Team for a base code to use, they sent me the code below... I took it and tweaked it, but no matter what add ons they suggested, my code still has errors. So I'm at a point where I feel quite lost. I almost want to abandon my attempt at this... yet I'll soon have 60,000+ Member_Key's that I'll need to pull claims data for. This is the purpose that I want the permanent table up and running.&amp;nbsp; I have no clue another work around to this... if there is another solution besides using a permanent table, please let me know.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Base Code from the Teradata Team: &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: navy;"&gt;This is what we did for another project.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: navy;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: navy;"&gt;%let userid=yourid;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: navy;"&gt;%let passtera=yourpass;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: navy;"&gt;%let edlsrvr=DWTEST2; ** wlpedl for production **;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: navy;"&gt;%let edldb= dbname;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: navy;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: navy;"&gt;libname edluat teradata user=&amp;amp;userid. password=&amp;amp;passtera. TDPID=&amp;amp;edlsrvr. SCHEMA=&amp;amp;edldb.;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: navy;"&gt;proc sql exec feedback stimer;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: navy;"&gt;&amp;nbsp; create table edluat.ANY_NAME_YOU_WANT(FASTLOAD=yes) as select * from Your_SAS_table;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; color: navy;"&gt;quit;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Oct 2012 17:11:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Uploading-data-to-a-Permanent-table-by-means-of-Fast-Load/m-p/80077#M7834</guid>
      <dc:creator>cklau</dc:creator>
      <dc:date>2012-10-02T17:11:09Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading data to a Permanent table by means of Fast Load.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Uploading-data-to-a-Permanent-table-by-means-of-Fast-Load/m-p/80078#M7835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That SAS code will create a new table, specifically the "CREATE TABLE" command will try to make a new table.&amp;nbsp; So you will need to have proper access to create the new table. I have found it more natural for me to use PROC APPEND to add data to an existing table, but I am a SAS programmer and most SQL still seems strange to me.&lt;/P&gt;&lt;P style="background-color: #ffffff;"&gt;&lt;SPAN style="color: #000080; font-family: Arial, sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff;"&gt;&lt;SPAN style="color: #000080; font-family: Arial, sans-serif;"&gt;proc append base= e&lt;/SPAN&gt;&lt;SPAN style="color: navy; font-family: Arial, sans-serif; font-style: inherit;"&gt;dluat.ANY_NAME_YOU_WANT(FASTLOAD=yes) data=Your_SAS_table;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff;"&gt;&lt;SPAN style="color: navy; font-family: Arial, sans-serif; font-style: inherit;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If you want to use FASTLOAD then the table either has to be empty or non-existent. &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can get more information in your SAS log by setting these options:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 14.0pt; font-family: 'Courier New'; color: blue;"&gt;option&lt;/SPAN&gt; &lt;SPAN style="font-size: 14.0pt; font-family: 'Courier New'; color: black;"&gt;nostsuffix sastrace=&lt;/SPAN&gt;&lt;SPAN style="font-size: 14.0pt; font-family: 'Courier New'; color: purple;"&gt;',,,ds'&lt;/SPAN&gt;&lt;SPAN style="font-size: 14.0pt; font-family: 'Courier New'; color: black;"&gt; sastraceloc=saslog &lt;/SPAN&gt;&lt;SPAN style="font-size: 14.0pt; font-family: 'Courier New'; color: black;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-family: Arial, sans-serif;"&gt;The d in the sastrace option says to show the database commands that SAS generates. The s says to show timing information.&amp;nbsp; The other two say to put the messages into the SAS log and not to append the lines with extra tagging that makes them harder for humans to read.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Oct 2012 17:37:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Uploading-data-to-a-Permanent-table-by-means-of-Fast-Load/m-p/80078#M7835</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2012-10-02T17:37:48Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading data to a Permanent table by means of Fast Load.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Uploading-data-to-a-Permanent-table-by-means-of-Fast-Load/m-p/80079#M7836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The SQL equivalent to what Tom is suggesting is to truncate the table, and then load it. This would probably have to be done using pass-through code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I agree with Tom that the code you were given creates the table, and therefore you problably can't do it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Oct 2012 20:30:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Uploading-data-to-a-Permanent-table-by-means-of-Fast-Load/m-p/80079#M7836</guid>
      <dc:creator>TomKari</dc:creator>
      <dc:date>2012-10-02T20:30:44Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading data to a Permanent table by means of Fast Load.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Uploading-data-to-a-Permanent-table-by-means-of-Fast-Load/m-p/80080#M7837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My recent code is as follows:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: blue;"&gt;OPTIONS&lt;/SPAN&gt; &lt;SPAN style="font-family: 'Courier New'; background: white; color: blue;"&gt;NOSYMBOLGEN&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: blue;"&gt;LIBNAME&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt; TERALIB TERADATA USER=&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: teal;"&gt;userid.&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt; PASSWORD=&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: teal;"&gt;passtera.&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt; mode=teradata&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; TDPID=&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: teal;"&gt;TDPID.&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt; CONNECTION=GLOBAL;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: blue;"&gt;OPTIONS&lt;/SPAN&gt; &lt;SPAN style="font-family: 'Courier New'; background: white; color: blue;"&gt;SYMBOLGEN&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; background: white; font-family: 'Courier New';"&gt;proc&lt;/STRONG&gt; &lt;STRONG style="color: navy; background: white; font-family: 'Courier New';"&gt;append&lt;/STRONG&gt; &lt;SPAN style="font-family: 'Courier New'; background: white; color: blue;"&gt;data&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;=ccare.sample(keep=MBR_KEY) &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: blue;"&gt;base&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;=Teralib.DMGMT (FASTLOAD=yes);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; background: white; font-family: 'Courier New';"&gt;run&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #575757; background: white; font-family: Arial;"&gt;Yet I get the following error:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: red;"&gt;ERROR: Error attempting to CREATE a DBMS table. ERROR: Teradata execute: The user does not have CREATE TABLE access to database EDL_NOHAPHI.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;However, the Teradata Team told me that they created a Permanent table for me to upload data to... DMGMT.&lt;/P&gt;&lt;P&gt;The reason why I need them to create the empty-space table is b/c I do not have write access to the Teradata environment normally.&amp;nbsp; Or, that's at least what I'm assuming happens.&lt;/P&gt;&lt;P&gt;If I dont have the access to create a table... are there any other ways? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basically, my project requires the pulling of data for 60,000 records. I imagine that this will take a long time to do if I dont have a method that can join the Member_Key's directly to the data.&amp;nbsp; I'm sorry for all this trouble, and I appreciate all of your willingness to help w/ suggestions...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Oct 2012 20:39:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Uploading-data-to-a-Permanent-table-by-means-of-Fast-Load/m-p/80080#M7837</guid>
      <dc:creator>cklau</dc:creator>
      <dc:date>2012-10-02T20:39:48Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading data to a Permanent table by means of Fast Load.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Uploading-data-to-a-Permanent-table-by-means-of-Fast-Load/m-p/80081#M7838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your code looks correct to me. Here's a link to the SAS documentation for optimizing Teradata loads:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="active_link" href="http://support.sas.com/documentation/cdl/en/acreldb/65247/HTML/default/viewer.htm#n0ht8i7t92tocpn18vn0krftm85m.htm" title="http://support.sas.com/documentation/cdl/en/acreldb/65247/HTML/default/viewer.htm#n0ht8i7t92tocpn18vn0krftm85m.htm"&gt;http://support.sas.com/documentation/cdl/en/acreldb/65247/HTML/default/viewer.htm#n0ht8i7t92tocpn18vn0krftm85m.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's Greek to me, but one thing is says is that the target dataset must be empty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can I suggest that you try the same thing, but without the FASTLOAD=yes dataset option. Trim your source file to around 5,000 records, that should run quite quickly. At least then you'll be able to see if it relates to FASTLOAD, or something else. I have done this successfully using other DBMS products, and 60,000 records shouldn't be terrible even without optimized loading.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tom&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Oct 2012 22:48:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Uploading-data-to-a-Permanent-table-by-means-of-Fast-Load/m-p/80081#M7838</guid>
      <dc:creator>TomKari</dc:creator>
      <dc:date>2012-10-02T22:48:31Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading data to a Permanent table by means of Fast Load.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Uploading-data-to-a-Permanent-table-by-means-of-Fast-Load/m-p/80082#M7839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If proc append tries to create a table then the table obviously does not exist. Else Proc Append would not try to create the table for you. Are you 100% sure that you're connecting to the right database?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tom's suggestion to add&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue; font-family: 'Courier New'; font-size: 14pt;"&gt;option&lt;/SPAN&gt; &lt;SPAN style="color: black; font-family: 'Courier New'; font-size: 14pt;"&gt;nostsuffix sastrace=&lt;/SPAN&gt;&lt;SPAN style="color: purple; font-family: 'Courier New'; font-size: 14pt;"&gt;',,,ds'&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: 'Courier New'; font-size: 14pt;"&gt; sastraceloc=saslog &lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: 'Courier New'; font-size: 14pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;is a very good one as it will show you in the log what SQL code SAS actually generates and sends to Teradata for execution. Copying this code and send it to the Teradata DBA would be a good start to get the issue resolved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But again: If using Proc Append creates a SQL Create statement then SAS thinks at this moment the table doesn't exist at all. May be the table has been created for you but there are some grants (permissions) missing for the user you're using for connecting to Teradata.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Oct 2012 09:37:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Uploading-data-to-a-Permanent-table-by-means-of-Fast-Load/m-p/80082#M7839</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2012-10-03T09:37:47Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading data to a Permanent table by means of Fast Load.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Uploading-data-to-a-Permanent-table-by-means-of-Fast-Load/m-p/80083#M7840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Everyone! Thanks for your help! It actually works now! The issue that I had to resolved dealt with my company swtiching over to using a different user_ID connection along with our outlook passwords to connect to the system.&amp;nbsp; The final code that worked is as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: blue;"&gt;option&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt; obs=max;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: blue;"&gt;option&lt;/SPAN&gt; &lt;SPAN style="font-family: 'Courier New'; background: white; color: blue;"&gt;compress&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;=yes;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: blue;"&gt;option&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt; nostsuffix sastrace=&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple;"&gt;',,,ds'&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt; sastraceloc=saslog ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: blue;"&gt;%let&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt; TDPID=DWPROD2;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green;"&gt;**wlpedl for production**;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: blue;"&gt;LIBNAME&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt; TERALIB TERADATA USER=&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple;"&gt;'MY_USER_ID@LDAP'&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt; PASSWORD=&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple;"&gt;'OUTLOOK PASSWORD'&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: green;"&gt;/*database=USERDATA_ENT_REPL */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;mode=teradata logdb=USER_UTLTY_ENT&amp;nbsp; TDPID=&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: teal;"&gt;TDPID.&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;CONNECTION=GLOBAL DBMSTEMP=YES TPT=NO;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; background: white; font-family: 'Courier New';"&gt;proc&lt;/STRONG&gt; &lt;STRONG style="color: navy; background: white; font-family: 'Courier New';"&gt;append&lt;/STRONG&gt; &lt;SPAN style="font-family: 'Courier New'; background: white; color: blue;"&gt;data&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;=ccare.sample(keep=MBR_KEY) &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: blue;"&gt;base&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;=Teralib.DMGMT (FASTLOAD=yes);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; background: white; font-family: 'Courier New';"&gt;run&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;***Note: DMGMT was the name of the Permanent table that the Teradata Team had created for me in the Teradata environment.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;The next question would be, if I wanted to change the data that I've uploaded, must I delete ALL values in the Permanent table in order to upload new values into the table. &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Oct 2012 20:11:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Uploading-data-to-a-Permanent-table-by-means-of-Fast-Load/m-p/80083#M7840</guid>
      <dc:creator>cklau</dc:creator>
      <dc:date>2012-10-03T20:11:16Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading data to a Permanent table by means of Fast Load.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Uploading-data-to-a-Permanent-table-by-means-of-Fast-Load/m-p/80084#M7841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want to use fastload then yes, the table must be empty.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2012 03:21:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Uploading-data-to-a-Permanent-table-by-means-of-Fast-Load/m-p/80084#M7841</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2012-10-04T03:21:32Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading data to a Permanent table by means of Fast Load.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Uploading-data-to-a-Permanent-table-by-means-of-Fast-Load/m-p/80085#M7842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Helvetica','sans-serif'; color: #575757;"&gt;A coworker also helped me discover how to delete the permanent table.&amp;nbsp; Yay! It works!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN" style="font-family: 'Helvetica','sans-serif'; color: #575757;"&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; background: white; font-family: 'Courier New';"&gt;PROC&lt;/STRONG&gt; &lt;STRONG style="color: navy; background: white; font-family: 'Courier New';"&gt;SQL&lt;/STRONG&gt; &lt;SPAN style="font-family: 'Courier New'; background: white; color: blue;"&gt;EXEC&lt;/SPAN&gt; &lt;SPAN style="font-family: 'Courier New'; background: white; color: blue;"&gt;FEEDBACK&lt;/SPAN&gt; &lt;SPAN style="font-family: 'Courier New'; background: white; color: blue;"&gt;STIMER&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: blue;"&gt;CONNECT&lt;/SPAN&gt; &lt;SPAN style="font-family: 'Courier New'; background: white; color: blue;"&gt;TO&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt; TERADATA &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: blue;"&gt;AS&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt; TD1 (USER=&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple;"&gt;'MY_USER_ID@LDAP'&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;PASSWORD=&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple;"&gt;'OUTLOOK PASSWORD'&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;TDPID=DWPROD2 MODE=TERADATA CONNECTION=GLOBAL);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: blue;"&gt;EXECUTE&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;(&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;delete from DMGMT&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;) &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: blue;"&gt;BY&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt; TD1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; background: white; font-family: 'Courier New';"&gt;quit&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2012 21:31:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Uploading-data-to-a-Permanent-table-by-means-of-Fast-Load/m-p/80085#M7842</guid>
      <dc:creator>cklau</dc:creator>
      <dc:date>2012-10-04T21:31:23Z</dc:date>
    </item>
  </channel>
</rss>

