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;

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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