BookmarkSubscribeRSS Feed
strakenobody
Calcite | Level 5

Hi,
how to efficiently delete millions of records from the LASR table?

 

The goal is to load and append the incremental data (few millions of records) into the big table (bilions of records) on the LASR. Before appending (proc imstat with set statement), there is deleting: 

proc sql noprint;
	select distinct(id) into :ids separated by ','
	from incremental_table;
quit;
		
PROC IMSTAT data=LASR_LIB.BIG_TABLE
	WHERE ID in (&ids.);
RUN;
	deleterows;
RUN;

But this statement finish with error:

ERROR: The length of the value of the macro variable ids (387453) exceeds the maximum length (65534).

 

Doing this in a loop does't make sense - the whole procedure takes hours.

 

What is the best practice to delete records from LASR table? Or generally to append incremental data? Maybe some merge option?

 

Regards.

Piotr

1 REPLY 1
strakenobody
Calcite | Level 5

Any advice? I spend several days on it and have no idea. I don't found any option to extend macro variable. 

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!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 1 reply
  • 682 views
  • 0 likes
  • 1 in conversation