Hi to y'all! 😊
I have a table that resides on a SPD server. I call it SPD_TABLE in this example. It has 4 indexes. 3 simple ones and 1 composite that is unique. For the example I call the columns for this unique index REC_RK and VALID_FROM. This is the UNIQUE KEY. I have about 80.000 rows in this table. All the REC_RK's are > 6000000. So now I want to empty this table. I write:
proc sql; delete from libforfun.spd_table where rec_rk ne 1 ;quit;
This take hours if it ends at all (haven't had the patience) and write-locks the table! What is it that the compiler cannot figure out? 🙄
To avoid this I coded a simple work around:
1. data bla_bla; set libforfun.spd_table; where rec_rk eq 1; run; /*result - an empty table */
2. data libforfun.spd_table; set bla_bla; run; /*problem solved*/
But WHY is the other option not done in a jiffy ??? Where is the bug that I cannot see? 😕
Best regards,
Longimanus.
Deleting all of the observations from a existing dataset is NOT something you should be doing with SAS.
Why not just make a new dataset with zero observations?
data replace;
set replace(obs=0);
run;
Deleting all of the observations from a existing dataset is NOT something you should be doing with SAS.
Why not just make a new dataset with zero observations?
data replace;
set replace(obs=0);
run;
My guess that for every row your SQL deletes, SAS is updating the index. That will definitely be slow. Try dropping indexes, then deleting rows.
Use your workaround, but don't forget to recreate the indexes (if they are needed anyway on SPD tables). DELETE will only mark the observations as deleted, but not free the space.
Run this for reference:
data cars;
set sashelp.cars;
do i = 1 to 10;
output;
end;
run;
proc contents data=cars;
run;
proc sql;
delete from cars where origin ne "moon";
quit;
proc contents data=cars;
run;
You will see that the filesize does not change.
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.
Ready to level-up your skills? Choose your own adventure.