Kindly let me know ways how to delete a work table through di studio 4.21.
Regards,
Bina
proc delete data=work.<your table>;
quit;
Add this in pre- or post-code of the node where it should happen.
Alternatively you can also use Proc Datasets or a SQL drop table.
Not really sure why you need to delete a work table - unless it's so big that you're getting troubles with your workspace while the job is running.
Give the below code in any transformation post code for which table you want to delete work table.
proc datasets lib=work nodetails nolist;
delete WXXXXX;
run;
cheers.
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9.
Early bird rate extended! Save $200 when you sign up by March 31.
Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.
Find more tutorials on the SAS Users YouTube channel.