We have a large dataset in SAS environment having 30 million records and small datasets having 100 000 records each.
We have to left join these smaller datasets with "Large" Table, and it is taking around 30-40 minutes for joining the smaller dataset with large dataset.
If we run the job for 5-6 datasets individually, it took a lot of time. If we merge all these datasets in to a single dataset and then do the left join, will it take less time compared to individual? Also, there is space crunch in WORK so we have to consider that also.
hash table
. – Robert Soszyńskidata step
, and then lookup usingkey
. – Gordon Linoff