I have been deleting records logically from one dataset , when i checked size of dataset is remains always same after deletion of records also .
Query used :-
proc sql;
delete from ADFBASE.advdep_final_sas1;
quit;
Result :-
NOTE: 57589 rows were deleted from ADFBASE.ADVDEP_FINAL_SAS1.
But when i checked size of ADFBASE.ADVDEP_FINAL_SAS1 in server , it is still same after deletion of 57589 records.
we are using same code for many dataset and it is just deleting data only Logically not physically.
I want to delete the records which are already deleted so that it will free size for that dataset.
How to delete records which were already deleted logically ?
you need just copy it to itself:
data ADFBASE.ADVDEP_FINAL_SAS1;
set ADFBASE.ADVDEP_FINAL_SAS1;
run;
the logical deleted observations will not be copied.
Do you want to delete all records or remove the table entirely?
I want to remove some records physically which is already removed from dataset using below query:-
proc sql ;
delete from advdep_final_sas1;
quit;
after using above query the size of datset remains same that means it is not deleting records from dataset physically.
How to remove records from dataset which was deleted previouslly ?
you need just copy it to itself:
data ADFBASE.ADVDEP_FINAL_SAS1;
set ADFBASE.ADVDEP_FINAL_SAS1;
run;
the logical deleted observations will not be copied.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
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!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.