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

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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