BookmarkSubscribeRSS Feed
Ashwini
Calcite | Level 5

Kindly let me know ways how to delete a work table through di studio 4.21.

Regards,

Bina

2 REPLIES 2
Patrick
Opal | Level 21

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.

Riteshdell
Quartz | Level 8

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.         

sas-innovate-white.png

Register Today!

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.

Register now!

How to connect to databases in SAS Viya

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.

Discussion stats
  • 2 replies
  • 1701 views
  • 0 likes
  • 3 in conversation