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-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

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