BookmarkSubscribeRSS Feed
My_SAS
Calcite | Level 5

HI are there any options to append huge datasets and reduce the time

i am having two datasets having 1 crs obs each every time it will get 1 crs obs in data set 2 any optins to optimise the time

for appending i am using this command

proc append base=data1 data=data2;

run;

3 REPLIES 3
My_SAS
Calcite | Level 5

is there any bulkload options for appending the datasets...

art297
Opal | Level 21

I think there is if you are using Teradata or some DBMSs.  See, e.g., http://www.afhood.com/blog/?tag=proc-append or do a Google search for bulkload append sas

LinusH
Tourmaline | Level 20

Well, too little information here for helping you out.

Given your example code and by using the term "data set", I guess that your data is in SAS tables (Base, or perhaps SPDE?).

If your problem handles temporary tables, just be sure to add the smaller table to the larger.

If you base table is permanent:

-  Bulkload: I would consider PROC APPEND as equivalent in speed (or better) than RDBMS bulkload. That is, if your base table doesn't have any constraints (especially PK/FK) or indexes defined. If your base table is in a SPDE libref, you could have indexes defined, and then SAS will simultaneously insert data and update the index.

/Linus

Data never sleeps

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
  • 3 replies
  • 1236 views
  • 0 likes
  • 3 in conversation