BookmarkSubscribeRSS Feed
wg
Calcite | Level 5 wg
Calcite | Level 5

Hi, how can I upload data to append to an existing Teradata table in SAS?

Thank you

5 REPLIES 5
Tom
Super User Tom
Super User

libname td teradata server= ..... ;

proc append base=td.existing  data=new_data ; run;

wg
Calcite | Level 5 wg
Calcite | Level 5

Hi Tom... Thank you very much ... But I have 9,000,000 obs to upload. You method may take very very long time to load...

Tom
Super User Tom
Super User

Why do you think it will take a long time?

You can use the FASTLOAD option, but that requires an empty table.  So load to an empty table then use passthrough code to insert it into the target table.

wg
Calcite | Level 5 wg
Calcite | Level 5

Fastload can only be done for appending data to an empty table. But I kept history data there. So I cannot use Fastload...

Tom
Super User Tom
Super User

Load into an empty table and the copy on the TD side.

proc sql ;

  connect to teradata (....);

  execute (insert ..... ) by teradata ;

quit;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 5 replies
  • 1726 views
  • 0 likes
  • 2 in conversation