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-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

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
  • 1361 views
  • 0 likes
  • 3 in conversation