/ Published in: SAS
URL: http://studysas.blogspot.com/2009/05/how-to-delete-or-remove-previously.html
How to delete previously assigned formats and informats completely from the SAS dataset:
PROC DATASETS lib=work; MODIFY dsn; FORMAT all; INFORMAT all; RUN; QUIT;
Expand |
Embed | Plain Text
check out the comple article and diff. ways of doing this at: http://studysas.blogspot.com/2009/05/how-to-delete-or-remove-previously.html
You need to login to post a comment.
