Production Ready Macros for SAS Application Developers
mp_dropmembers.sas File Reference

Drops tables / views (if they exist) without warnings in the log. More...

Go to the source code of this file.

Detailed Description

Example usage:

proc sql;
create table data1 as select * from sashelp.class;
create view view2 as select * from sashelp.class;
%mp_dropmembers(list=data1 view2)
Parameters
listspace separated list of datasets / views
libref=can only drop from a single library at a time
Version
9.2
Author
Allan Bowe

Definition in file mp_dropmembers.sas.